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.
40 lines
1.1 KiB
C#
40 lines
1.1 KiB
C#
using DS.Module.Core;
|
|
using DS.Module.Core.Data;
|
|
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DS.WMS.Core.Code.Entity
|
|
{
|
|
/// <summary>
|
|
/// 客户对账模板
|
|
/// </summary>
|
|
[SqlSugar.SugarTable("code_check_bill_template", "客户对账模板")]
|
|
public class CodeCheckBillTemplate : BaseModel<long>
|
|
{
|
|
|
|
/// <summary>
|
|
/// 对账模板名称
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(ColumnDescription = "对账模板名称", IsNullable = false, Length = 50)]
|
|
|
|
public string Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// 对账模板英文名称
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(ColumnDescription = "对账模板英文名称", IsNullable = true, Length = 50)]
|
|
|
|
public string EnName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 状态
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "状态")]
|
|
public StatusEnum? Status { get; set; } = StatusEnum.Enable;
|
|
}
|
|
}
|