巨石化纤
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
584 B

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; }
}
}