using CoreCms.Net.Model.Entities.baifenbingfa.apply; using SqlSugar; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CoreCms.Net.Model.ViewModels.baifenbingfa { /// /// 查询审批返回实体 /// public class applyModelDTO { /// /// id /// public int id { get; set; } /// /// 审批人ID用,分割 /// public string managerID { get; set; } /// /// 审批人名称用,分割 /// public string managerName { get; set; } /// /// 审批角色ID,号分割 /// public string roleID { get; set; } /// /// 审核人数数量 /// public int managerApplyCount { get; set; } /// /// 类型 /// public int aType { get; set; } /// /// 类型 /// public string aTypeName { get; set; } /// /// 类型 /// public int ayStataType { get; set; } /// /// 类型 /// public string ayStataTypeName { get; set; } /// /// 用户ID /// public int userID { get; set; } /// /// 内容 /// public string dec { get; set; } /// /// 备注 /// public string reMake { get; set; } /// /// 调整前数据 /// public string oldData { get; set; } /// /// 调整数据 /// public string data { get; set; } /// /// 创建人 /// public int createById { get; set; } /// /// 修改人 /// public int upDataById { get; set; } /// /// 建立时间 public DateTime? createTime { get; set; } /// /// 修改时间 /// public DateTime? upDataTime { get; set; } /// /// 创建人 /// public string createBy { get; set; } /// /// 修改人 /// public string upDataBy { get; set; } /// /// 删除标志 /// public bool isdelete { get; set; } = false; } }