模具保养

This commit is contained in:
qianjiawei
2023-11-02 10:14:06 +08:00
parent b00eea39dd
commit b1984e5548
3 changed files with 101 additions and 4 deletions

View File

@@ -0,0 +1,27 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Numerics;
using System.Text;
using System.Threading.Tasks;
namespace Tnb.EquipMgr.Entities.Dto
{
public class PadMainListOutput
{
public string plan_id { get; set; }
public string mold_id { get; set; }
public string mold_code { get; set; }
public string mold_name { get; set; }
public string mold_status { get; set; }
public string status { get; set; }
public string createuser { get; set; }
public string createtime { get; set; }
public string plan_start_time { get; set; }
public string starttime { get; set; }
}
}