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
1007 B
C#

using DS.Module.Core;
using DS.Module.Core.Data;
using MediatR;
using SqlSugar;
namespace DS.WMS.Core.Code.Entity;
/// <summary>
/// 业务来源明细表
/// </summary>
[SqlSugar.SugarTable("code_source_detail","业务来源明细表")]
public class CodeSourceDetail: BaseModel<long>
{
/// <summary>
/// 业务来源Id
/// </summary>
[SugarColumn(ColumnDescription = "业务来源Id")]
public long SourceId { get; set; }
/// <summary>
/// 来源明细名称
/// </summary>
[SugarColumn(ColumnDescription = "来源明细名称", Length = 40)]
public string DetailName { get; set; }
/// <summary>
/// 英文名称
/// </summary>
[SugarColumn(ColumnDescription = "英文名称", Length = 100,IsNullable = true)]
public string EnName { get; set; }
/// <summary>
/// 状态 0启用 1禁用
/// </summary>
[SugarColumn(ColumnDescription = "状态",DefaultValue = "0")]
public StatusEnum? Status { get; set; } = StatusEnum.Enable;
}