| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- using Newtonsoft.Json;
- using System.Collections.Generic;
- namespace Core.StlMes.Client.Qcm.model
- {
- /// <summary>
- /// 数据库表COM_BASE_SPLINE_C所对应的实体类(生成工具:代码生成工具1.0.0.0)
- /// 作者:Chenxi-PC2 时间:2016-04-14
- /// </summary>
- public class ComBaseSplineCEntity2 : ComBaseSplineCEntity
- {
- private List<ComBaseSplineCRSteelEntity> splineCRSteel = null;
- [JsonProperty("splineCRSteel")]
- public List<ComBaseSplineCRSteelEntity> SplineCRSteel
- {
- get { return splineCRSteel; }
- set { splineCRSteel = value; }
- }
- private List<ComBaseSplineCRProductEntity> splineCRProduct = null;
- [JsonProperty("splineCRProduct")]
- public List<ComBaseSplineCRProductEntity> SplineCRProduct
- {
- get { return splineCRProduct; }
- set { splineCRProduct = value; }
- }
- private List<ComBaseSplineCRStdEntity> splineCRStd = null;
- [JsonProperty("splineCRStd")]
- public List<ComBaseSplineCRStdEntity> SplineCRStd
- {
- get { return splineCRStd; }
- set { splineCRStd = value; }
- }
- private List<ComBaseSplineCRModelEntity> splineCRModel = null;
- [JsonProperty("splineCRModel")]
- public List<ComBaseSplineCRModelEntity> SplineCRModel
- {
- get { return splineCRModel; }
- set { splineCRModel = value; }
- }
- }
- }
|