using System; using System.Collections.Generic; namespace SupplierManager.Models; public partial class AasProjectShenpi { public long Id { get; set; } /// /// 项目代码 /// public string? ProjectCode { get; set; } /// /// 审批建议 /// public string? ShenpiSuggest { get; set; } /// /// 驳回理由 /// public string? RejectReason { get; set; } /// /// 审批序号 /// public int? ShenpiNumber { get; set; } public DateTime? Createtime { get; set; } public DateTime? Updatetime { get; set; } }