ComBaseSplineCEntity2.cs 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. using Newtonsoft.Json;
  2. using System.Collections.Generic;
  3. namespace Core.StlMes.Client.Qcm.model
  4. {
  5. /// <summary>
  6. /// 数据库表COM_BASE_SPLINE_C所对应的实体类(生成工具:代码生成工具1.0.0.0)
  7. /// 作者:Chenxi-PC2 时间:2016-04-14
  8. /// </summary>
  9. public class ComBaseSplineCEntity2 : ComBaseSplineCEntity
  10. {
  11. private List<ComBaseSplineCRSteelEntity> splineCRSteel = null;
  12. [JsonProperty("splineCRSteel")]
  13. public List<ComBaseSplineCRSteelEntity> SplineCRSteel
  14. {
  15. get { return splineCRSteel; }
  16. set { splineCRSteel = value; }
  17. }
  18. private List<ComBaseSplineCRProductEntity> splineCRProduct = null;
  19. [JsonProperty("splineCRProduct")]
  20. public List<ComBaseSplineCRProductEntity> SplineCRProduct
  21. {
  22. get { return splineCRProduct; }
  23. set { splineCRProduct = value; }
  24. }
  25. private List<ComBaseSplineCRStdEntity> splineCRStd = null;
  26. [JsonProperty("splineCRStd")]
  27. public List<ComBaseSplineCRStdEntity> SplineCRStd
  28. {
  29. get { return splineCRStd; }
  30. set { splineCRStd = value; }
  31. }
  32. private List<ComBaseSplineCRModelEntity> splineCRModel = null;
  33. [JsonProperty("splineCRModel")]
  34. public List<ComBaseSplineCRModelEntity> SplineCRModel
  35. {
  36. get { return splineCRModel; }
  37. set { splineCRModel = value; }
  38. }
  39. }
  40. }