26 lines
830 B
C#
26 lines
830 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Model
|
|
{
|
|
public class Tw_InOutMasterOutput:Model.Tw_InOutPlanMaster
|
|
{
|
|
public string InOutPlanMasterId { get; set; }
|
|
public string CategoryString { get; set; }
|
|
public string StateString { get; set; }
|
|
public string TypeString { get; set; }
|
|
public string CreateManName { get; set; }
|
|
public string WarehouseManName { get; set; }
|
|
public string AuditManName { get; set; }
|
|
public string AuditManName2 { get; set; }
|
|
public string ReqUnitName { get; set; }
|
|
public string UnitWorkId { get; set; }
|
|
public string WeldTaskCode { get; set; }
|
|
|
|
public int? PipeLineSortIndex { get; set; }
|
|
}
|
|
}
|