using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CallCenterApi.Model { /// /// 管理员账号表管理客户 /// [Serializable] public class ManagementUser { #region Model public int id { get; set; } /// /// 账号名称 /// public string username { get; set; } /// /// 密码 /// public string userpower { get; set; } /// /// 操作人 /// public string handleper { get; set; } /// /// 操作时间 /// public DateTime handdate { get; set; } /// /// 是否删除0 未删 1 已删 /// public int ifdeler { get; set; } /// /// 微信登录的openid /// public string openid { get; set; } public string companyname; #endregion Model } }