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.
48 lines
1.4 KiB
C#
48 lines
1.4 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_fee", "客户对账模板明细")]
|
|
public class CodeCheckBillTemplateFee : BaseModel<long>
|
|
{
|
|
/// <summary>
|
|
/// 模板Id
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "模板Id", IsNullable = false)]
|
|
public long TemplateId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 收付类型(收、付) 1应收 2 应付
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "收付类型(收、付)", IsNullable = false, DefaultValue = "1")]
|
|
public FeeType FeeType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 费用Id
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "费用Id")]
|
|
public long FeeId { get; set; }
|
|
/// <summary>
|
|
/// 费用名称
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "费用名称", Length = 100, IsNullable = true)]
|
|
public string FeeName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 币别
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "币别", Length = 20)]
|
|
public string Currency { get; set; }
|
|
}
|
|
}
|