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.

46 lines
1.4 KiB
C#

using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DS.WMS.Core.Check.Entity
{
/// <summary>
/// 对账单费用关联表
/// </summary>
[SqlSugar.SugarTable("check_bill_fee_records")]
public class CheckBillFeeRecords
{
/// <summary>
/// Id
/// </summary>
[SugarColumn(ColumnDescription = "Id", IsPrimaryKey = true, IsIdentity = true)]
public int Id { get; set; }
/// <summary>
/// 对账Id
/// </summary>
[SqlSugar.SugarColumn(ColumnDescription = "对账Id", IsNullable = false, DefaultValue = "0")]
public long CheckId { get; set; }
/// <summary>
/// 业务Id
/// </summary>
[SqlSugar.SugarColumn(ColumnDescription = "业务Id", IsNullable = false, DefaultValue = "0")]
public long BusinessId { get; set; }
/// <summary>
/// 费用记录Id
/// </summary>
[SqlSugar.SugarColumn(ColumnDescription = "费用记录Id", IsNullable = false, DefaultValue = "0")]
public long FeeRecordId { get; set; }
/// <summary>
/// 对账金额
/// </summary>
[SugarColumn(ColumnDescription = "对账金额", IsNullable = true, Length = 18, DecimalDigits = 2, DefaultValue = "0")]
public decimal? CheckBillAmount { get; set; } = 0;
}
}