namespace Admin.NET.Application; /// /// 申请示例输出参数 /// public class Dm_ApplyDemoDto { /// /// Id /// public long Id { get; set; } /// /// 机构类型 详见字典类型 org_type /// public long? OrgType { get; set; } /// /// 申请号 /// public string ApplyNO { get; set; } /// /// 申请时间 /// public DateTime ApplicatDate { get; set; } /// /// 申请金额 /// public decimal Amount { get; set; } /// /// 是否通知 /// public bool IsNotice { get; set; } /// /// 备注 /// public string Remark { get; set; } /// /// CreateTime /// public DateTime? CreateTime { get; set; } /// /// UpdateTime /// public DateTime? UpdateTime { get; set; } /// /// CreateUserId /// public long? CreateUserId { get; set; } /// /// CreateUserName /// public string? CreateUserName { get; set; } /// /// UpdateUserId /// public long? UpdateUserId { get; set; } /// /// UpdateUserName /// public string? UpdateUserName { get; set; } /// /// IsDelete /// public bool IsDelete { get; set; } }