using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Model { public class UserModel { /// /// 工号 /// public string userName { get; set; } /// /// 姓名 /// public string nickName { get; set; } /// /// 部门 /// public string bumen { get; set; } /// /// 职位 /// public string zhiwei { get; set; } } public class SettingModel { /// /// 机型 /// public string[] Types { get; set; } /// /// 夹具号1 /// public string devcode1 { get; set; } /// /// 夹具号2 /// public string devcode2 { get; set; } /// /// 线损文件地址 /// public string pathini { get; set; } /// /// 线损文件备份地址 /// public string pathen { get; set; } /// /// load配置文件地址 /// public string pathLoad { get; set; } /// /// log文件1地址 /// public string pathch1 { get; set; } /// /// log文件2地址 /// public string pathch2 { get; set; } public int index { get; set; } public SettingModel() { this.Types = new string[] { }; this.index = 0; this.devcode1 = ""; this.devcode2 = ""; this.pathini = ""; this.pathen = ""; this.pathLoad = ""; this.pathch1 = ""; this.pathch1 = ""; } } }