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.

28 lines
716 B

3 weeks ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace NFine.Application.Models
  7. {
  8. /// <summary>
  9. /// 物料档案
  10. /// </summary>
  11. public class ICSInventoryDto
  12. {
  13. public string InvCode { get; set; }
  14. public string InvName { get; set; }
  15. }
  16. /// <summary>
  17. /// 物料关联检验项目信息
  18. /// </summary>
  19. public class ICSInventory2InspectionGroup
  20. {
  21. public string InvCode { get; set; }
  22. public string CheckAttr { get; set; }
  23. public string CheckAttrName { get; set; }
  24. public string GroupCode { get; set; }
  25. public string GroupName { get; set; }
  26. }
  27. }