ExternalAPI_NET8/Model/Entity/OAPush_PMInvoice.cs
2026-05-21 17:23:36 +08:00

38 lines
885 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace Web.Core.Model.Entity;
public class OAPush_PMInvoice
{
/// <summary>
/// OA流水号
/// </summary>
public string OAAutoID { get; set; }
/// <summary>
/// 申请人
/// </summary>
public string ApplyUser { get; set; }
/// <summary>
/// 申请部门
/// </summary>
public string ApplyDepartment { get; set; }
/// <summary>
/// 申请日期
/// </summary>
public DateTime ApplyDate { get; set; }
/// <summary>
/// 供应商名称
/// </summary>
public string SupplierNCodeName { get; set; }
/// <summary>
/// 采购发票自动号清单
/// </summary>
public string PMInvoiceNoList {get;set;}
/// <summary>
/// 流程状态0为审批中1为已终止2为完结10为已撤消
/// </summary>
public int OAStatus { get; set; }
}