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; } /// /// true 同意,false 拒绝 /// public bool? state { get; set; } /// /// 原因 /// public string? reason { get; set; } /// /// 选择时间 /// public DateTime? time { get; set; } public int? Type { get; set; } } }