/*********************************************************************** * Project: baifenBinfa * ProjectName: 百分兵法管理系统 * Web: http://chuanyin.com * Author: * Email: * CreateTime: 202403/02 * Description: 暂无 ***********************************************************************/ using System; using System.ComponentModel.DataAnnotations; namespace CoreCms.Net.Model.Entities { /// /// 店员视图表 /// public class StoreClerkDto { /// /// 序列 /// [Display(Name = "")] public int id { get; set; } /// /// [Display(Name = "")] public int storeId { get; set; } /// /// [Display(Name = "")] public int userId { get; set; } /// /// [Display(Name = "")] public bool isDel { get; set; } /// /// [Display(Name = "")] public DateTime createTime { get; set; } /// /// [Display(Name = "")] public DateTime? updateTime { get; set; } /// /// [Display(Name = "")] public string storeName { get; set; } /// /// [Display(Name = "")] public string nickName { get; set; } /// /// [Display(Name = "")] public string mobile { get; set; } /// /// [Display(Name = "")] public string avatarImage { get; set; } } }