工艺参数列表重写

This commit is contained in:
2024-09-29 09:28:28 +08:00
parent 36268bf1da
commit cd06d414bc
3 changed files with 84 additions and 2 deletions

View File

@@ -0,0 +1,22 @@
namespace Tnb.PerMgr.Entities.Dto
{
public class PerProcessStandardListOutput
{
public string id { get; set; }
public string code { get; set; }
public string process_type { get; set; }
public string molds_id { get; set; }
public string equip_id { get; set; }
public string equip_id_id { get; set; }
public string output_material_id { get; set; }
public decimal? moulding_cycle { get; set; }
public string version { get; set; }
public string enabled { get; set; }
public string remark { get; set; }
public string create_id { get; set; }
public string create_id_id { get; set; }
public string create_time { get; set; }
public string molds_id_id { get; set; }
public string output_material_id_id { get; set; }
}
}