namespace TProduct.SettingModel
|
{
|
public class CodeSetting
|
{
|
public string SeriesCodePrefix { get; set; }//前缀
|
|
public string PumpCodePrefix { get; set; }//前缀
|
public string ValveCodePrefix { get; set; }//前缀
|
public string MotorCodePrefix { get; set; }//前缀
|
|
public int PartCodeAutoMethod { get; set; }//自动产生的方式 0 : 全局自动 1:手动输入,没有就用/代替
|
public string PartCodePrefix { get; set; }//自动产生的前缀
|
|
public int TestItemCodeAutoMethod { get; set; }//0 : 全局自动 1: 每日自动
|
public string TestItemCodePrefix { get; set; }//前缀
|
|
public int ReportFileNoAutoMethod { get; set; }//测试报告编号
|
|
public string WorkBenchMonitorCode { get; set; }//前缀
|
}
|
}
|