using Newtonsoft.Json; using System.ComponentModel; namespace Core.StlMes.Client.Qcm.model { /// /// 数据库表COM_BASE_IMPACT所对应的实体类(生成工具:代码生成工具4.0 访问地址:http://172.16.2.128/tool/) /// 作者:tgcx-test 时间:2017-05-25 /// public class ComBaseImpactEntity { /// /// PK /// private string id = ""; /// /// 是否允许弧形样 /// private bool? allowArc = null; /// /// 弧形样侧边最短(%) /// private decimal? minSideArc = null; /// /// 弧形样上边最短(mm) /// private decimal? minAboveArc = null; /// /// 加工余量(mm) /// private decimal? processSurplus = null; /// /// 最低冲击值(J) /// private decimal? minImpact = null; /// /// 降温说明 /// private string coolMemo = ""; /// /// 创建人 /// private string createName = ""; /// /// 创建时间 /// private string createTime = ""; /// /// 修改人 /// private string updateName = ""; /// /// 修改时间 /// private string updateTime = ""; /// /// 删除人 /// private string deleteName = ""; /// /// 删除时间 /// private string deleteTime = ""; /// /// 有效标志(1:有效,0:无效) /// private string validflag = ""; /// /// 备注 /// private string memo = ""; /// /// PK /// [Description("主键")] [JsonProperty("id")] public string Id { get { return id; } set { id = value; } } /// /// 是否允许弧形样 /// [Description("是否允许弧形样")] [JsonProperty("allowArc")] public bool? AllowArc { get { return allowArc; } set { allowArc = value; } } /// /// 弧形样侧边最短(%) /// [Description("弧形样侧边最短(%)")] [JsonProperty("minSideArc")] public decimal? MinSideArc { get { return minSideArc; } set { minSideArc = value; } } /// /// 弧形样上边最短(mm) /// [Description("弧形样上边最短(mm)")] [JsonProperty("minAboveArc")] public decimal? MinAboveArc { get { return minAboveArc; } set { minAboveArc = value; } } /// /// 加工余量(mm) /// [Description("加工余量(mm)")] [JsonProperty("processSurplus")] public decimal? ProcessSurplus { get { return processSurplus; } set { processSurplus = value; } } /// /// 最低冲击值(J) /// [Description("最低冲击值(J)")] [JsonProperty("minImpact")] public decimal? MinImpact { get { return minImpact; } set { minImpact = value; } } /// /// 降温说明 /// [Description("降温说明")] [JsonProperty("coolMemo")] public string CoolMemo { get { return coolMemo; } set { coolMemo = value; } } /// /// 创建人 /// [Description("创建人")] [JsonProperty("createName")] public string CreateName { get { return createName; } set { createName = value; } } /// /// 创建时间 /// [Description("创建时间")] [JsonProperty("createTime")] public string CreateTime { get { return createTime; } set { createTime = value; } } /// /// 修改人 /// [Description("修改人")] [JsonProperty("updateName")] public string UpdateName { get { return updateName; } set { updateName = value; } } /// /// 修改时间 /// [Description("修改时间")] [JsonProperty("updateTime")] public string UpdateTime { get { return updateTime; } set { updateTime = value; } } /// /// 删除人 /// [Description("删除人")] [JsonProperty("deleteName")] public string DeleteName { get { return deleteName; } set { deleteName = value; } } /// /// 删除时间 /// [Description("删除时间")] [JsonProperty("deleteTime")] public string DeleteTime { get { return deleteTime; } set { deleteTime = value; } } /// /// 有效标志(1:有效,0:无效) /// [Description("有效标志")] [JsonProperty("validflag")] public string Validflag { get { return validflag; } set { validflag = value; } } /// /// 备注 /// [Description("备注")] [JsonProperty("memo")] public string Memo { get { return memo; } set { memo = value; } } } }