mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2026-03-23 16:27:20 +08:00
添加项目文件。
This commit is contained in:
72
CoreCms.Net.Model/Entities/View/StoreClerkDto.cs
Normal file
72
CoreCms.Net.Model/Entities/View/StoreClerkDto.cs
Normal file
@@ -0,0 +1,72 @@
|
||||
/***********************************************************************
|
||||
* Project: CoreCms
|
||||
* ProjectName: 核心内容管理系统
|
||||
* Web: https://www.corecms.net
|
||||
* Author: 大灰灰
|
||||
* Email: jianweie@163.com
|
||||
* CreateTime: 2021/1/31 21:45:10
|
||||
* Description: 暂无
|
||||
***********************************************************************/
|
||||
|
||||
using System;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace CoreCms.Net.Model.Entities
|
||||
{
|
||||
/// <summary>
|
||||
/// 店员视图表
|
||||
/// </summary>
|
||||
public class StoreClerkDto
|
||||
{
|
||||
/// <summary>
|
||||
/// 序列
|
||||
/// </summary>
|
||||
[Display(Name = "")]
|
||||
public int id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// </summary>
|
||||
[Display(Name = "")]
|
||||
public int storeId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// </summary>
|
||||
[Display(Name = "")]
|
||||
public int userId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// </summary>
|
||||
[Display(Name = "")]
|
||||
public bool isDel { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// </summary>
|
||||
[Display(Name = "")]
|
||||
public DateTime createTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// </summary>
|
||||
[Display(Name = "")]
|
||||
public DateTime? updateTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// </summary>
|
||||
[Display(Name = "")]
|
||||
public string storeName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// </summary>
|
||||
[Display(Name = "")]
|
||||
public string nickName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// </summary>
|
||||
[Display(Name = "")]
|
||||
public string mobile { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// </summary>
|
||||
[Display(Name = "")]
|
||||
public string avatarImage { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user