You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1007 B
C#
34 lines
1007 B
C#
using DS.Module.Core;
|
|
using DS.Module.Core.Data;
|
|
using SqlSugar;
|
|
|
|
namespace DS.WMS.Core.Code.Entity;
|
|
/// <summary>
|
|
/// 付费方式表
|
|
/// </summary>
|
|
[SqlSugar.SugarTable("op_code_frt","付费方式表")]
|
|
public class CodeFrt: BaseModel<long>
|
|
{
|
|
/// <summary>
|
|
/// 付费方式-英文名称
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "付费方式-英文名称", Length = 100)]
|
|
public string FrtName { get; set; }
|
|
/// <summary>
|
|
/// 中文名称
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "中文名称", Length = 50,IsNullable = true)]
|
|
public string CnName { get; set; }
|
|
|
|
/// <summary>
|
|
/// EDI代码
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "EDI代码", Length = 5,IsNullable = true)]
|
|
public string EdiCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 状态 0启用 1禁用
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "状态",DefaultValue = "0")]
|
|
public StatusEnum? Status { get; set; } = StatusEnum.Enable;
|
|
} |