PLCVarConfigModel.cs 424 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Model
  7. {
  8. public class PLCVarConfigModel
  9. {
  10. public string 所属模块 { get; set; }
  11. public string 名称 { get; set; }
  12. public string PLC地址 { get; set; }
  13. public string 变量类型 { get; set; }
  14. public string 是否保存 { get; set; }
  15. }
  16. }