| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220 |
- using Newtonsoft.Json;
- using System.ComponentModel;
- namespace Core.StlMes.Client.Qcm.model
- {
- /// <summary>
- /// 数据库表COM_BASE_SPLINE_LENGTH所对应的实体类(生成工具:代码生成工具4.0 访问地址:http://172.16.2.128/tool/)
- /// 作者:tgcx-test 时间:2017-05-26
- /// </summary>
- public class ComBaseSplineLengthEntity
- {
- /// <summary>
- /// 优选顺序
- /// </summary>
- private string id = "";
- /// <summary>
- /// 项目代码_方向
- /// </summary>
- private string itemCodeF = "";
- /// <summary>
- /// 项目代码_尺寸
- /// </summary>
- private string itemCodeC = "";
- /// <summary>
- /// 样条形状 1:条 2:条(弧)
- /// </summary>
- private string splineShape = "";
- /// <summary>
- /// 长
- /// </summary>
- private decimal? length = null;
- /// <summary>
- /// 创建人
- /// </summary>
- private string createName = "";
- /// <summary>
- /// 创建时间
- /// </summary>
- private string createTime = "";
- /// <summary>
- /// 修改人
- /// </summary>
- private string updateName = "";
- /// <summary>
- /// 修改时间
- /// </summary>
- private string updateTime = "";
- /// <summary>
- /// 删除人
- /// </summary>
- private string deleteName = "";
- /// <summary>
- /// 删除时间
- /// </summary>
- private string deleteTime = "";
- /// <summary>
- /// 有效标志(1:有效,0:无效)
- /// </summary>
- private string validflag = "";
- /// <summary>
- /// 备注
- /// </summary>
- private string memo = "";
- private string oldId = "";
- /// <summary>
- /// 优选顺序
- /// </summary>
- [Description("优选顺序")]
- [JsonProperty("id")]
- public string Id
- {
- get { return id; }
- set { id = value; }
- }
- /// <summary>
- /// 项目代码_方向
- /// </summary>
- [Description("方向")]
- [JsonProperty("itemCodeF")]
- public string ItemCodeF
- {
- get { return itemCodeF; }
- set { itemCodeF = value; }
- }
- /// <summary>
- /// 项目代码_尺寸
- /// </summary>
- [Description("试样尺寸")]
- [JsonProperty("itemCodeC")]
- public string ItemCodeC
- {
- get { return itemCodeC; }
- set { itemCodeC = value; }
- }
- /// <summary>
- /// 样条形状 1:条 2:条(弧)
- /// </summary>
- [Description("样条形状")]
- [JsonProperty("splineShape")]
- public string SplineShape
- {
- get { return splineShape; }
- set { splineShape = value; }
- }
- /// <summary>
- /// 长
- /// </summary>
- [Description("长")]
- [JsonProperty("length")]
- public decimal? Length
- {
- get { return length; }
- set { length = value; }
- }
- /// <summary>
- /// 创建人
- /// </summary>
- [Description("创建人")]
- [JsonProperty("createName")]
- public string CreateName
- {
- get { return createName; }
- set { createName = value; }
- }
- /// <summary>
- /// 创建时间
- /// </summary>
- [Description("创建时间")]
- [JsonProperty("createTime")]
- public string CreateTime
- {
- get { return createTime; }
- set { createTime = value; }
- }
- /// <summary>
- /// 修改人
- /// </summary>
- [Description("修改人")]
- [JsonProperty("updateName")]
- public string UpdateName
- {
- get { return updateName; }
- set { updateName = value; }
- }
- /// <summary>
- /// 修改时间
- /// </summary>
- [Description("修改时间")]
- [JsonProperty("updateTime")]
- public string UpdateTime
- {
- get { return updateTime; }
- set { updateTime = value; }
- }
- /// <summary>
- /// 删除人
- /// </summary>
- [Description("删除人")]
- [JsonProperty("deleteName")]
- public string DeleteName
- {
- get { return deleteName; }
- set { deleteName = value; }
- }
- /// <summary>
- /// 删除时间
- /// </summary>
- [Description("删除时间")]
- [JsonProperty("deleteTime")]
- public string DeleteTime
- {
- get { return deleteTime; }
- set { deleteTime = value; }
- }
- /// <summary>
- /// 有效标志(1:有效,0:无效)
- /// </summary>
- [Description("有效标志")]
- [JsonProperty("validflag")]
- public string Validflag
- {
- get { return validflag; }
- set { validflag = value; }
- }
- /// <summary>
- /// 备注
- /// </summary>
- [Description("备注")]
- [JsonProperty("memo")]
- public string Memo
- {
- get { return memo; }
- set { memo = value; }
- }
- /// <summary>
- /// 旧ID
- /// </summary>
- [Description("旧ID")]
- [JsonProperty("oldId")]
- public string OldId
- {
- get { return oldId; }
- set { oldId = value; }
- }
- }
- }
|