hao
2025-08-04 2b9f544a55f30f0b6e8010b84ed8b60f2c4cb78e
1
2
3
4
5
6
7
8
9
10
11
12
13
namespace MES.Service.Dto.webApi.SRM;
 
public class DeliveryNote
{
    public string? Erpid { get; set; }
    public string? DeliveryNo { get; set; }
    public string? SupplierId { get; set; }
    public string? FDate { get; set; }
    public string? Remark { get; set; }
    public string? FReceiveOrgId { get; set; }
    public string? Is_SRM { get; set; }
    public string? CREATE_BY { get; set; }
}