2024-03-17 14:53:16 +08:00
|
|
|
namespace ZR.Model.MES.wms
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 客户信息
|
2024-03-17 16:05:28 +08:00
|
|
|
/// </summary>
|
2024-03-17 14:53:16 +08:00
|
|
|
[SugarTable("wm_custom")]
|
|
|
|
|
public class WmCustom
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 主键
|
2024-03-17 16:05:28 +08:00
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
|
2024-03-17 14:53:16 +08:00
|
|
|
/// <summary>
|
|
|
|
|
/// 客户代码
|
2024-03-17 16:05:28 +08:00
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "custom_no")]
|
|
|
|
|
public string CustomNo { get; set; }
|
|
|
|
|
|
2024-03-17 14:53:16 +08:00
|
|
|
/// <summary>
|
|
|
|
|
/// 客户名称
|
2024-03-17 16:05:28 +08:00
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "custom_name")]
|
|
|
|
|
public string CustomName { get; set; }
|
|
|
|
|
|
2024-03-17 14:53:16 +08:00
|
|
|
/// <summary>
|
|
|
|
|
/// 客户地址
|
2024-03-17 16:05:28 +08:00
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "custom_address")]
|
|
|
|
|
public string CustomAddress { get; set; }
|
|
|
|
|
|
2024-03-17 14:53:16 +08:00
|
|
|
/// <summary>
|
|
|
|
|
/// 备注
|
2024-03-17 16:05:28 +08:00
|
|
|
/// </summary>
|
2024-06-07 11:04:26 +08:00
|
|
|
[SugarColumn(ColumnName = "remark")]
|
2024-03-17 16:05:28 +08:00
|
|
|
public string Remark { get; set; }
|
|
|
|
|
|
2024-03-17 14:53:16 +08:00
|
|
|
/// <summary>
|
|
|
|
|
/// 创建人
|
2024-03-17 16:05:28 +08:00
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "cREATED_BY")]
|
|
|
|
|
public string CreatedBy { get; set; }
|
|
|
|
|
|
2024-03-17 14:53:16 +08:00
|
|
|
/// <summary>
|
|
|
|
|
/// 创建时间
|
2024-03-17 16:05:28 +08:00
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "cREATED_TIME")]
|
|
|
|
|
public DateTime? CreatedTime { get; set; }
|
|
|
|
|
|
2024-03-17 14:53:16 +08:00
|
|
|
/// <summary>
|
|
|
|
|
/// 更新人
|
2024-03-17 16:05:28 +08:00
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "uPDATED_BY")]
|
|
|
|
|
public string UpdatedBy { get; set; }
|
|
|
|
|
|
2024-03-17 14:53:16 +08:00
|
|
|
/// <summary>
|
|
|
|
|
/// 更新时间
|
2024-03-17 16:05:28 +08:00
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "uPDATED_TIME")]
|
|
|
|
|
public DateTime? UpdatedTime { get; set; }
|
|
|
|
|
|
2024-03-17 14:53:16 +08:00
|
|
|
}
|
2024-03-17 16:05:28 +08:00
|
|
|
}
|