21 lines
557 B
C#
21 lines
557 B
C#
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; }
|
|
|
|
}
|
|
}
|