/***********************************************************************
* 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("CoreCmsBillLading",TableDescription = "提货单表")]
public partial class CoreCmsBillLading
{
///
/// 提货单表
///
public CoreCmsBillLading()
{
}
///
/// 提货单号
///
[Display(Name = "提货单号")]
[SugarColumn(ColumnDescription = "提货单号", IsPrimaryKey = true)]
[Required(ErrorMessage = "请输入{0}")]
[StringLength(20, ErrorMessage = "【{0}】不能超过{1}字符长度")]
public System.String id { get; set; }
///
/// 订单号
///
[Display(Name = "订单号")]
[SugarColumn(ColumnDescription = "订单号")]
[Required(ErrorMessage = "请输入{0}")]
[StringLength(20, ErrorMessage = "【{0}】不能超过{1}字符长度")]
public System.String orderId { get; set; }
///
/// 提货门店ID
///
[Display(Name = "提货门店ID")]
[SugarColumn(ColumnDescription = "提货门店ID")]
[Required(ErrorMessage = "请输入{0}")]
public System.Int32 storeId { get; set; }
///
/// 提货人姓名
///
[Display(Name = "提货人姓名")]
[SugarColumn(ColumnDescription = "提货人姓名", IsNullable = true)]
[StringLength(30, ErrorMessage = "【{0}】不能超过{1}字符长度")]
public System.String name { get; set; }
///
/// 提货手机号
///
[Display(Name = "提货手机号")]
[SugarColumn(ColumnDescription = "提货手机号", IsNullable = true)]
[StringLength(15, ErrorMessage = "【{0}】不能超过{1}字符长度")]
public System.String mobile { get; set; }
///
/// 处理店员ID
///
[Display(Name = "处理店员ID")]
[SugarColumn(ColumnDescription = "处理店员ID")]
[Required(ErrorMessage = "请输入{0}")]
public System.Int32 clerkId { get; set; }
///
/// 提货时间
///
[Display(Name = "提货时间")]
[SugarColumn(ColumnDescription = "提货时间", IsNullable = true)]
public System.DateTime? pickUpTime { get; set; }
///
/// 是否提货
///
[Display(Name = "是否提货")]
[SugarColumn(ColumnDescription = "是否提货")]
[Required(ErrorMessage = "请输入{0}")]
public System.Boolean status { 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; }
///
/// 删除时间
///
[Display(Name = "删除时间")]
[SugarColumn(ColumnDescription = "删除时间")]
[Required(ErrorMessage = "请输入{0}")]
public System.Boolean isDel { get; set; }
}
}