/***********************************************************************
* 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("CoreCmsBillReship",TableDescription = "退货单表")]
public partial class CoreCmsBillReship
{
///
/// 退货单表
///
public CoreCmsBillReship()
{
}
///
/// 退货单号
///
[Display(Name = "退货单号")]
[SugarColumn(ColumnDescription = "退货单号", IsPrimaryKey = true)]
[Required(ErrorMessage = "请输入{0}")]
[StringLength(20, ErrorMessage = "【{0}】不能超过{1}字符长度")]
public System.String reshipId { get; set; }
///
/// 订单序列
///
[Display(Name = "订单序列")]
[SugarColumn(ColumnDescription = "订单序列")]
[Required(ErrorMessage = "请输入{0}")]
[StringLength(20, ErrorMessage = "【{0}】不能超过{1}字符长度")]
public System.String orderId { get; set; }
///
/// 售后单序列
///
[Display(Name = "售后单序列")]
[SugarColumn(ColumnDescription = "售后单序列")]
[Required(ErrorMessage = "请输入{0}")]
[StringLength(20, ErrorMessage = "【{0}】不能超过{1}字符长度")]
public System.String aftersalesId { get; set; }
///
/// 用户ID 关联user.id
///
[Display(Name = "用户ID 关联user.id")]
[SugarColumn(ColumnDescription = "用户ID 关联user.id")]
[Required(ErrorMessage = "请输入{0}")]
public System.Int32 userId { get; set; }
///
/// 物流公司编码
///
[Display(Name = "物流公司编码")]
[SugarColumn(ColumnDescription = "物流公司编码", IsNullable = true)]
[StringLength(50, ErrorMessage = "【{0}】不能超过{1}字符长度")]
public System.String logiCode { get; set; }
///
/// 物流单号
///
[Display(Name = "物流单号")]
[SugarColumn(ColumnDescription = "物流单号", IsNullable = true)]
[StringLength(50, ErrorMessage = "【{0}】不能超过{1}字符长度")]
public System.String logiNo { get; set; }
///
/// 状态
///
[Display(Name = "状态")]
[SugarColumn(ColumnDescription = "状态")]
[Required(ErrorMessage = "请输入{0}")]
public System.Int32 status { get; set; }
///
/// 备注
///
[Display(Name = "备注")]
[SugarColumn(ColumnDescription = "备注", IsNullable = true)]
[StringLength(255, ErrorMessage = "【{0}】不能超过{1}字符长度")]
public System.String memo { 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; }
}
}