TStand.cs 712 B

123456789101112131415161718192021222324252627282930
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace MeterVision.db
  7. {
  8. public class TStand
  9. {
  10. public string StandId { get; set; }
  11. public string CreateTime { get; set; }
  12. public string StandName { get; set; }
  13. //1:手动创建的标准模板 2:导入excel创建的标准模板
  14. public int StandType { get; set; }
  15. public string StandFile { get; set; }
  16. public TStand()
  17. {
  18. StandId = string.Empty;
  19. CreateTime = string.Empty;
  20. StandName = string.Empty;
  21. StandType = 0;
  22. StandFile = string.Empty;
  23. }
  24. }
  25. }