hao
2025-05-23 db8dbafae693a62e9fe901adabfc4adcdbd92f7b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
namespace MES.Service.Dto.webApi;
 
public class ErpRohIn
{
    public string id { get; set; }
    public string? Type { get; set; }
    public string? FBillNo { get; set; }//单据编号
    public string? FDocumentStatus { get; set; }//单据状态
    public string? FBillTypeID { get; set; }//单据类型
    public string? FBusinessType { get; set; }      //业务类型
    public string? FDate { get; set; }              //采购日期
    public string? FSupplierId { get; set; }        //供应商
    public string? FCloseStatus { get; set; }       //关闭状态
    public string? FPurchaseOrgId { get; set; }     //采购组织
    public string? FPurchaseDeptId { get; set; }    //采购部门
    public string? FPurchaserGroupId { get; set; }  //采购组
    public string? FPurchaserId { get; set; }       //采购员
    public string? Acctype { get; set; }            //验收方式
    public string? FSettleId { get; set; }  //结算方
    public string? FChargeId { get; set; }  //收款方
 
    //public string? FProviderEMail { get; set; }
    public string? Remarks { get; set; }   //备注
    public string? FCancelStatus { get; set; }    //作废状态
    public string? FCancellerId { get; set; }     //作废人
    public string? FCancelDate { get; set; }      //作废日期
    public string? FCreatorId { get; set; }       //创建人
    public string? FCreateDate { get; set; }      //创建日期
    public string? FModifierId { get; set; }      //最后修改人
    public string? FModifyDate { get; set; }      //最后修改时间
    public string? FApproverId { get; set; }      //审核人
    public string? FApproveDate { get; set; }     //审核时间
    public string? FChangeReason { get; set; }    //变更原因
    public string? Prearrivaldate { get; set; }   //到货日期
 
    public string? FReceiveOrgId { get; set; }     //收料组织
    //public string? FProviderId { get; set; }
 
    //public string? FTContact { get; set; }
    //public string? Fmobilephone { get; set; }
 
    //public string? FixedTelephone { get; set; }
 
    //public string? Address { get; set; }
}