using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OASystem.Domain.Entities.Financial
{
///
/// 日常费用付款申请
///
[SugarTable("Fin_DailyFeePayment")]
public class Fin_DailyFeePayment: EntityBase
{
///
/// 申请说明
///
[SugarColumn(IsNullable = true,ColumnDataType = "nvarchar(4000)")]
public string? Instructions { get; set; }
///
/// 合计
///
[SugarColumn(IsNullable = true,ColumnDataType = "decimal(18,4)")]
public decimal SumPrice { get; set; }
///
/// 总经理审核
/// 0 未审核 1 审核通过 2 审核未通过
///
[SugarColumn(IsNullable = true, ColumnDataType = "int")]
public int MAudit { get; set; }
///
/// 总经理审核时间
///
[SugarColumn(IsNullable = true, ColumnDataType = "DateTime")]
public DateTime MAuditDate { get; set; }
///
/// 财务主管审核
/// 0 未审核 1 审核通过 2 审核未通过
///
[SugarColumn(IsNullable = true,ColumnDataType = "int")]
public int FAudit { get; set; }
///
/// 财务主管审核时间
///
[SugarColumn(IsNullable = true, ColumnDataType = "DateTime")]
public DateTime FAuditDate { get; set; }
///
/// 是否已付款
/// 0 否 1 是
///
[SugarColumn(IsNullable = true, ColumnDataType = "int")]
public int IsPay { get; set; }
///
/// 转账表识Id 存储SetDataId
///
[SugarColumn(IsNullable = true, ColumnDataType = "int")]
public int TransferTypeId { get; set; }
///
/// 费用类型Id 存储SetDataId
///
[SugarColumn(IsNullable = true, ColumnDataType = "int")]
public int PriceTypeId { get; set; }
///
/// 公司Id
///
[SugarColumn(IsNullable = true, ColumnDataType = "int")]
public int CompanyId { get; set; }
}
}