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.
29 lines
843 B
C#
29 lines
843 B
C#
8 months ago
|
using DS.Module.Core;
|
||
|
using DS.Module.Core.Data;
|
||
|
using SqlSugar;
|
||
|
|
||
|
namespace DS.WMS.Core.Code.Entity;
|
||
|
/// <summary>
|
||
|
/// 运输条款表
|
||
|
/// </summary>
|
||
|
[SqlSugar.SugarTable("op_code_service","运输条款表")]
|
||
|
public class CodeService: BaseModel<long>
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 运输条款-英文名称
|
||
|
/// </summary>
|
||
|
[SugarColumn(ColumnDescription = "运输条款-英文名称", Length = 100)]
|
||
|
public string ServiceName { get; set; }
|
||
|
/// <summary>
|
||
|
/// 中文名称
|
||
|
/// </summary>
|
||
|
[SugarColumn(ColumnDescription = "中文名称", Length = 50,IsNullable = true)]
|
||
|
public string CnName { get; set; }
|
||
|
|
||
|
|
||
|
/// <summary>
|
||
|
/// 状态 0启用 1禁用
|
||
|
/// </summary>
|
||
|
[SugarColumn(ColumnDescription = "状态",DefaultValue = "0")]
|
||
|
public StatusEnum? Status { get; set; } = StatusEnum.Enable;
|
||
|
}
|