/***********************************************************************
* 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("CoreCmsProductsDistribution",TableDescription = "货品三级佣金表")]
public partial class CoreCmsProductsDistribution
{
///
/// 货品三级佣金表
///
public CoreCmsProductsDistribution()
{
}
///
/// 序号
///
[Display(Name = "序号")]
[SugarColumn(ColumnDescription = "序号", IsPrimaryKey = true, IsIdentity = true)]
[Required(ErrorMessage = "请输入{0}")]
public System.Int32 id { get; set; }
///
/// 货品序列
///
[Display(Name = "货品序列")]
[SugarColumn(ColumnDescription = "货品序列")]
[Required(ErrorMessage = "请输入{0}")]
public System.Int32 productsId { get; set; }
///
/// 货品货号
///
[Display(Name = "货品货号")]
[SugarColumn(ColumnDescription = "货品货号")]
[Required(ErrorMessage = "请输入{0}")]
[StringLength(50, ErrorMessage = "【{0}】不能超过{1}字符长度")]
public System.String productsSN { get; set; }
///
/// 一级佣金
///
[Display(Name = "一级佣金")]
[SugarColumn(ColumnDescription = "一级佣金")]
[Required(ErrorMessage = "请输入{0}")]
public System.Decimal levelOne { get; set; }
///
/// 二级佣金
///
[Display(Name = "二级佣金")]
[SugarColumn(ColumnDescription = "二级佣金")]
[Required(ErrorMessage = "请输入{0}")]
public System.Decimal levelTwo { get; set; }
///
/// 三级佣金
///
[Display(Name = "三级佣金")]
[SugarColumn(ColumnDescription = "三级佣金")]
[Required(ErrorMessage = "请输入{0}")]
public System.Decimal levelThree { 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; }
}
}