namespace MES.Service.Dto.webApi;
|
|
public class ErpCGTHB
|
{
|
public string? ebeln { get; set; } //采购订单
|
public string? itemid { get; set; } //待退物料ID
|
public string? unit { get; set; } //单位
|
public string? ebeln_id { get; set; } //采购订单id
|
public string? line_id { get; set; } //采购订单行id
|
public string? depot_id { get; set; } //仓库ID
|
public string? depot_code { get; set; } //仓库编码
|
public string? erpid { get; set; } //单据体id
|
public string? eid { get; set; } //单据头id
|
public string? flot { get; set; } //批号
|
public string? fmoto { get; set; } //计划跟踪号
|
public string? quantity { get; set; } //数量
|
public string? ydfl_id { get; set; } //源单分录id
|
|
|
|
|
}
|