tx
9 天以前 e0b138b3e057de6f57021e6c8963868f5c5acc5a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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; }//前缀 
    }
}