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.
52 lines
1.2 KiB
C#
52 lines
1.2 KiB
C#
using DS.Module.Core.Data;
|
|
using DS.Module.Core.Enums;
|
|
using Org.BouncyCastle.Bcpg.OpenPgp;
|
|
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DS.WMS.Core.Fee.Entity
|
|
{
|
|
/// <summary>
|
|
/// 报销单详情
|
|
/// </summary>
|
|
[SugarTable("fee_reimbursement_detail", TableDescription = "报销单详情表")]
|
|
public class FeeReimbursementDetail : BaseModel<long>
|
|
{
|
|
|
|
/// <summary>
|
|
/// 主表Id
|
|
/// </summary>
|
|
public long PId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 事由
|
|
/// </summary>
|
|
public string Reason { get; set; }
|
|
|
|
/// <summary>
|
|
/// 金额
|
|
/// </summary>
|
|
public decimal Amount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 发票号
|
|
/// </summary>
|
|
public string InvoiceNumber { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 状态(未提交,审核中,审核通过,审核驳回,撤销) 与主表
|
|
/// </summary>
|
|
public ReimbursementTypeEnums Status { get; set; }
|
|
|
|
/// <summary>
|
|
/// 驳回理由 (与主表同步)
|
|
/// </summary>
|
|
public string RejectReason { get; set; }
|
|
}
|
|
}
|