CNAS取数仪器端升级
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

InsertDataMapping.cs 541B

il y a 5 ans
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. }