CNAS取数仪器端升级
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
541B

  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. }