namespace Tnb.ProductionMgr.Entities.Dto
{
public class PrdInstockInput
{
///
/// 单据类型
///
public string bill_type { get; set; } = string.Empty;
///
/// 载具编号
///
public string carry_code { get; set; } = string.Empty;
///
/// 起始库位编号
///
public string location_code { get; set; } = string.Empty;
///
/// 检验(0-未检 1-已检)
///
public int is_check { get; set; }
public string? station_id { get; set; }
public string? workline_id { get; set; }
public string? workshop_id { get; set; }
///
/// 子表明细
///
public List> details { get; set; }
}
}