/***********************************************************************
* Project: baifenBinfa
* ProjectName: 百分兵法管理系统
* Web: http://chuanyin.com
* Author:
* Email: 34161541@qq.com
* CreateTime: 2024-03-01 22:14:58
* Description: 暂无
***********************************************************************/
using SqlSugar;
using System.ComponentModel.DataAnnotations;
namespace CoreCms.Net.Model.Entities
{
///
/// 店铺店员关联表
///
[SugarTable("CoreCmsClerk",TableDescription = "店铺店员关联表")]
public partial class CoreCmsClerk
{
///
/// 店铺店员关联表
///
public CoreCmsClerk()
{
}
///
/// 序列
///
[Display(Name = "序列")]
[SugarColumn(ColumnDescription = "序列", IsPrimaryKey = true, IsIdentity = true)]
[Required(ErrorMessage = "请输入{0}")]
public System.Int32 id { get; set; }
///
/// 店铺ID
///
[Display(Name = "店铺ID")]
[SugarColumn(ColumnDescription = "店铺ID")]
[Required(ErrorMessage = "请输入{0}")]
public System.Int32 storeId { get; set; }
///
/// 用户ID
///
[Display(Name = "用户ID")]
[SugarColumn(ColumnDescription = "用户ID")]
[Required(ErrorMessage = "请输入{0}")]
public System.Int32 userId { get; set; }
///
/// 是否删除
///
[Display(Name = "是否删除")]
[SugarColumn(ColumnDescription = "是否删除")]
[Required(ErrorMessage = "请输入{0}")]
public System.Boolean isDel { get; set; }
///
/// 创建时间
///
[Display(Name = "创建时间")]
[SugarColumn(ColumnDescription = "创建时间")]
[Required(ErrorMessage = "请输入{0}")]
public System.DateTime createTime { get; set; }
///
/// 删除时间
///
[Display(Name = "删除时间")]
[SugarColumn(ColumnDescription = "删除时间", IsNullable = true)]
public System.DateTime? updateTime { get; set; }
}
}