ProductInfoModel.cs 482 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Ropin.Inspection.Model.SearchModel.PRD
  7. {
  8. public class ProductInfoModel
  9. {
  10. public string C_DeviceCode { get; set; }
  11. public Guid C_CreateBy { get; set; }
  12. public List<Goods> goods { get; set; }
  13. }
  14. public class Goods
  15. {
  16. public string C_QRCode { get; set; }
  17. public int I_Status { get; set; }
  18. }
  19. }