using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OASystem.Domain.Entities.Financial { /// /// 日常费用付款申请 /// [SugarTable("Fin_DailyFeePaymentContent")] public class Fin_DailyFeePaymentContent : EntityBase { /// /// 日常费用付款申请外键编号 /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int DFPId { get; set; } /// /// 费用名称 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(varchar(125))")] public string? PriceName { get; set; } /// /// 数量 /// [SugarColumn(IsNullable = true, ColumnDataType = "decimal(18,2)")] public decimal Quantity { get; set; } /// /// 单价 /// [SugarColumn(IsNullable = true, ColumnDataType = "decimal(18,4)")] public decimal Price { get; set; } /// /// 单项费用合计 /// [SugarColumn(IsNullable = true, ColumnDataType = "decimal(18,4)")] public decimal ItemTotal { get; set; } } }