重写模具保养

This commit is contained in:
2024-08-01 10:11:23 +08:00
parent 5df23e01ee
commit f6da16904d
23 changed files with 1532 additions and 50 deletions

View File

@@ -0,0 +1,17 @@
namespace Tnb.EquipMgr.Entities.Dto
{
public class ToolMoldMaintainPlanRunListOutput
{
public string id { get; set; }
public string plan_code { get; set; }
public string mode { get; set; }
public string status { get; set; }
public string create_id { get; set; }
public string create_time { get; set; }
public string plan_start_date { get; set; }
public string plan_end_date { get; set; }
public string remark { get; set; }
public string starter_id { get; set; }
public string act_start_date { get; set; }
}
}