using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Elight.Entity.SystemModel { public class UpdateuserDto { /// /// 数据编号 /// public string? Id { get; set; } /// /// 用户编号 /// public string? userId { get; set; } /// /// 用户名称 /// public string? username { get; set; } /// /// 1 同意,2 拒绝 3结束 /// public int? state { get; set; } /// /// 原因 /// public string? reason { get; set; } /// /// 选择时间 /// public DateTime? time { get; set; } /// /// 开始 /// public DateTime? starttime { get; set; } /// /// 结束 /// public DateTime? endtime { get; set; } public int? Type { get; set; } } }