using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MeterVision.db { public class TStand { public string StandId { get; set; } public string CreateTime { get; set; } public string StandName { get; set; } //1:手动创建的标准模板 2:导入excel创建的标准模板 public int StandType { get; set; } public string StandFile { get; set; } public TStand() { StandId = string.Empty; CreateTime = string.Empty; StandName = string.Empty; StandType = 0; StandFile = string.Empty; } } }