28 lines
697 B
C#
28 lines
697 B
C#
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; }
|
|
|
|
}
|
|
}
|