using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEAWCS_DTO.SerialPort { public class AddUserDTO { /// /// 用户id用来修改 /// public int id { get; set; } public string username { get; set; } public string usertruename { get; set; } public string phoneno { get; set; } /// /// 组别 /// public int roleid { get; set; } /// /// 用户类别 /// public string rolename { get; set; } /// /// 是否启用 /// public byte enable { get; set; } /// /// 上传图片名 /// public string? path { get; set; } /// /// 班组 /// public string userteam { get; set; } /// /// 单位 /// public string userunit { get; set; } /// /// 卡号 /// // public int carnuber { get; set; } /// /// 是否是组长 /// public int IsLeader { get; set; } /// /// 轨道站 /// public int dept_Id { get; set; } ///// ///// 图片token ///// //public string ?face_token { get; set; } ///// ///// 百度云分组 ///// // public int log_id { get; set; } } }