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.
39 lines
1.2 KiB
C#
39 lines
1.2 KiB
C#
using DS.Module.Core;
|
|
using DS.Module.Core.Data;
|
|
using SqlSugar;
|
|
|
|
namespace DS.WMS.Core.Code.Entity;
|
|
/// <summary>
|
|
/// 结算方式表
|
|
/// </summary>
|
|
// ReSharper disable once StringLiteralTypo
|
|
[SqlSugar.SugarTable("op_code_stlmode","结算方式表")]
|
|
public class CodeStlMode: BaseModel<long>
|
|
{
|
|
/// <summary>
|
|
/// 结算方式唯一代码
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "结算方式唯一代码", Length = 10)]
|
|
public string StlCode { get; set; }
|
|
/// <summary>
|
|
/// 结算方式名称
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "结算方式名称", Length = 30)]
|
|
public string StlName { get; set; }
|
|
/// <summary>
|
|
/// 英文名称
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "英文名称", Length = 100)]
|
|
public string EnName { get; set; }
|
|
/// <summary>
|
|
/// 财务软件代码
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "财务软件代码", Length = 30,IsNullable = true)]
|
|
public string FinanceSoftCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 状态 0启用 1禁用
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "状态",DefaultValue = "0")]
|
|
public StatusEnum? Status { get; set; } = StatusEnum.Enable;
|
|
} |