using System; using System.Collections.Generic; #nullable disable namespace zhengcaioa.Models { public partial class ProcurementComplaint { public Guid Id { get; set; } public string ProjectCode { get; set; } public string ProjectName { get; set; } public DateTime DecisionDate { get; set; } public string Purchaser { get; set; } public string ProcurementAgency { get; set; } public string Complainant { get; set; } public string ProcurementSupervisionDepartment { get; set; } public string Url { get; set; } public DateTime? CreateTime { get; set; } public DateTime? UpdateTime { get; set; } public long? CreateUserId { get; set; } public string CreateUserName { get; set; } public long? UpdateUserId { get; set; } public string UpdateUserName { get; set; } } }