巨石化纤

19 lines
584 B

1 year ago
using System;
namespace SSWMS.Common
{
[Serializable]
public class IO_CONTROL_ROUTE
{
public int CONTROL_ROUTE_ID { get; set; }
public int CONTROL_ROUTE_TYPE { get; set; }
public string CONTROL_ROUTE_CODE { get; set; }
public string CONTROL_ROUTE_NAME { get; set; }
public string START_DEVICE { get; set; }
public string END_DEVICE { get; set; }
public int CONTROL_ROUTE_STATUS { get; set; }
public string CONTROL_ROUTE_REMARK { get; set; }
public string CONTROL_ROUTE_FLAG { get; set; }
}
}