CNAS取数仪器端升级
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

InsertDataMapping.cs 541B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace CnasSynchrousModel
  6. {
  7. /// <summary>
  8. /// 插入数据映射
  9. /// </summary>
  10. public class InsertDataMapping
  11. {
  12. public string GUID { get; set; }
  13. public string InstrumentCode { get; set; }
  14. public string InstrumentKeyColumn { get; set; }
  15. public string InstrumentKeyValue { get; set; }
  16. public string CNASKeyColumn { get; set; }
  17. public string CNASKeyValue { get; set; }
  18. }
  19. }