This commit is contained in:
2023-11-02 11:45:44 +08:00
parent 8c31205e70
commit 95ecfd1814
5 changed files with 39 additions and 1 deletions

View File

@@ -126,5 +126,23 @@ namespace Tnb.ProductionMgr.Entities.Dto.PrdManage
/// 实际完工日期
/// </summary>
public string? act_end_date { get; set; }
/// <summary>
/// 挤出件类型
/// </summary>
public string? tube { get; set; }
/// <summary>
/// 最小包装
/// </summary>
public decimal? minpacking { get; set; }
/// <summary>
/// 主单位数量
/// </summary>
public string? main_num { get; set; }
/// <summary>
/// 副单位数量kg
/// </summary>
public string? deputy_num { get; set; }
}
}