| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223 |
- using Newtonsoft.Json;
- using System.ComponentModel;
- namespace Core.StlMes.Client.Qcm.model
- {
- /// <summary>
- /// 数据库表COM_BASE_IMPACT_C所对应的实体类(生成工具:代码生成工具4.0 访问地址:http://172.16.2.128/tool/)
- /// 作者:tgcx-test 时间:2017-05-25
- /// </summary>
- public class ComBaseImpactCEntity
- {
- /// <summary>
- /// 父表主键
- /// </summary>
- private string id = "";
- /// <summary>
- /// 从表流水序号
- /// </summary>
- private string indexSeq = "";
- /// <summary>
- /// 试样尺寸
- /// </summary>
- private string itemCodeC = "";
- /// <summary>
- /// 试样规格
- /// </summary>
- private string itemSpec = "";
- /// <summary>
- /// 试样宽度
- /// </summary>
- private decimal? itemWidth = null;
- /// <summary>
- /// 递减系数
- /// </summary>
- private decimal? declineRatio = 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 = "";
- /// <summary>
- /// 父表主键
- /// </summary>
- [Description("父表主键")]
- [JsonProperty("id")]
- public string Id
- {
- get { return id; }
- set { id = value; }
- }
- /// <summary>
- /// 从表流水序号
- /// </summary>
- [Description("序号")]
- [JsonProperty("indexSeq")]
- public string IndexSeq
- {
- get { return indexSeq; }
- set { indexSeq = value; }
- }
- /// <summary>
- /// 试样尺寸
- /// </summary>
- [Description("试样尺寸")]
- [JsonProperty("itemCodeC")]
- public string ItemCodeC
- {
- get { return itemCodeC; }
- set { itemCodeC = value; }
- }
- /// <summary>
- /// 试样规格
- /// </summary>
- [Description("试样规格")]
- [JsonProperty("itemSpec")]
- public string ItemSpec
- {
- get { return itemSpec; }
- set { itemSpec = value; }
- }
- /// <summary>
- /// 试样宽度
- /// </summary>
- [Description("试样宽度")]
- [JsonProperty("itemWidth")]
- public decimal? ItemWidth
- {
- get { return itemWidth; }
- set { itemWidth = value; }
- }
- /// <summary>
- /// 递减系数
- /// </summary>
- [Description("递减系数")]
- [JsonProperty("declineRatio")]
- public decimal? DeclineRatio
- {
- get { return declineRatio; }
- set { declineRatio = 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; }
- }
- }
- }
|