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.
33 lines
994 B
C#
33 lines
994 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_source","业务来源表")]
|
|
public class CodeSource: BaseModel<long>
|
|
{
|
|
|
|
/// <summary>
|
|
/// 业务来源唯一代码
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "业务来源唯一代码", Length = 10)]
|
|
public string SourceCode { get; set; }
|
|
/// <summary>
|
|
/// 业务来源名称
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "业务来源名称", Length = 40)]
|
|
public string SourceName { get; set; }
|
|
/// <summary>
|
|
/// 英文名称
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "英文名称", Length = 100)]
|
|
public string EnName { get; set; }
|
|
/// <summary>
|
|
/// 状态 0启用 1禁用
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "状态",DefaultValue = "0")]
|
|
public StatusEnum? Status { get; set; } = StatusEnum.Enable;
|
|
} |