| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352 |
- using Core.Mes.Client.Comm.Attribute;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Linq;
- using System.Text;
- namespace Core.StlMes.Client.SaleOrder
- {/// <summary>
- /// 数据库表SLM_ORD_DESIGN_SIC_DIFF所对应的实体类(生成工具:代码生成工具3.0)
- /// 作者:DESKTOP-DG6B81Q 时间:2015-12-26
- /// </summary>
- public class SlmOrdDesignSicDiffEntity
- {
- /// <summary>
- /// 质量主键
- /// </summary>
- private string designKey = "";
- /// <summary>
- /// 合同PK
- /// </summary>
- private string ordPk = "";
- /// <summary>
- /// 合同行PK
- /// </summary>
- private string ordLnPk = "";
- /// <summary>
- /// 索引号(标)
- /// </summary>
- private string sic = "";
- /// <summary>
- /// 索引号(客)
- /// </summary>
- private string sic1 = "";
- /// <summary>
- /// 材质检验项代码
- /// </summary>
- private string phyCode = "";
- /// <summary>
- /// 材质检验项名称
- /// </summary>
- private string phyName = "";
- /// <summary>
- /// 标准负值(mm)(标)
- /// </summary>
- private string stdMinVal = "";
- /// <summary>
- /// 标准正值(mm)(标)
- /// </summary>
- private string stdMaxVal = "";
- /// <summary>
- /// 标准负值(%)(标)
- /// </summary>
- private string stdMinPercent = "";
- /// <summary>
- /// 标准正值(%) (标)
- /// </summary>
- private string stdMaxPercent = "";
- /// <summary>
- /// 标准公式负值(mm) (标)
- /// </summary>
- private string stdMinFormula = "";
- /// <summary>
- /// 标准公式正值(mm)(标)
- /// </summary>
- private string stdMaxFormula = "";
- /// <summary>
- /// 标准负值(mm)(客)
- /// </summary>
- private string stdMinVal1 = "";
- /// <summary>
- /// 标准正值(mm)(客)
- /// </summary>
- private string stdMaxVal1 = "";
- /// <summary>
- /// 标准负值(%)(客)
- /// </summary>
- private string stdMinPercent1 = "";
- /// <summary>
- /// 标准正值(%) (客)
- /// </summary>
- private string stdMaxPercent1 = "";
- /// <summary>
- /// 标准公式负值(mm) (客)
- /// </summary>
- private string stdMinFormula1 = "";
- /// <summary>
- /// 标准公式正值(mm)(客)
- /// </summary>
- private string stdMaxFormula1 = "";
- /// <summary>
- /// 下偏差值
- /// </summary>
- private string diffValueMin = "";
- /// <summary>
- /// 上偏差值
- /// </summary>
- private string diffValueMax = "";
- /// <summary>
- /// 质量主键
- /// </summary>
- [Description("质量主键")]
- [Nullable(false)]
- [DataLength(40)]
- public string DesignKey
- {
- get { return designKey; }
- set { designKey = value; }
- }
- /// <summary>
- /// 合同PK
- /// </summary>
- [Description("合同PK")]
- [Nullable(false)]
- [DataLength(40)]
- public string OrdPk
- {
- get { return ordPk; }
- set { ordPk = value; }
- }
- /// <summary>
- /// 合同行PK
- /// </summary>
- [Description("合同行PK")]
- [Nullable(false)]
- [DataLength(40)]
- public string OrdLnPk
- {
- get { return ordLnPk; }
- set { ordLnPk = value; }
- }
- /// <summary>
- /// 索引号(标)
- /// </summary>
- [Description("索引号(标)")]
- [Nullable(true)]
- [DataLength(12)]
- public string Sic
- {
- get { return sic; }
- set { sic = value; }
- }
- /// <summary>
- /// 索引号(客)
- /// </summary>
- [Description("索引号(客)")]
- [Nullable(true)]
- [DataLength(12)]
- public string Sic1
- {
- get { return sic1; }
- set { sic1 = value; }
- }
- /// <summary>
- /// 材质检验项代码
- /// </summary>
- [Description("材质检验项代码")]
- [Nullable(true)]
- [DataLength(5)]
- public string PhyCode
- {
- get { return phyCode; }
- set { phyCode = value; }
- }
- /// <summary>
- /// 材质检验项名称
- /// </summary>
- [Description("材质检验项")]
- [Nullable(true)]
- [DataLength(100)]
- public string PhyName
- {
- get { return phyName; }
- set { phyName = value; }
- }
- /// <summary>
- /// 标准负值(mm)(标)
- /// </summary>
- [Description("标准负值(mm)")]
- [Nullable(true)]
- [DataLength(10)]
- public string StdMinVal
- {
- get { return stdMinVal; }
- set { stdMinVal = value; }
- }
- /// <summary>
- /// 标准正值(mm)(标)
- /// </summary>
- [Description("标准正值(mm)")]
- [Nullable(true)]
- [DataLength(10)]
- public string StdMaxVal
- {
- get { return stdMaxVal; }
- set { stdMaxVal = value; }
- }
- /// <summary>
- /// 标准负值(%)(标)
- /// </summary>
- [Description("标准负值(%)")]
- [Nullable(true)]
- [DataLength(10)]
- public string StdMinPercent
- {
- get { return stdMinPercent; }
- set { stdMinPercent = value; }
- }
- /// <summary>
- /// 标准正值(%) (标)
- /// </summary>
- [Description("标准正值(%)")]
- [Nullable(true)]
- [DataLength(10)]
- public string StdMaxPercent
- {
- get { return stdMaxPercent; }
- set { stdMaxPercent = value; }
- }
- /// <summary>
- /// 标准公式负值(mm) (标)
- /// </summary>
- [Description("标准公式负值(mm)")]
- [Nullable(true)]
- [DataLength(100)]
- public string StdMinFormula
- {
- get { return stdMinFormula; }
- set { stdMinFormula = value; }
- }
- /// <summary>
- /// 标准公式正值(mm)(标)
- /// </summary>
- [Description("标准公式正值(mm)")]
- [Nullable(true)]
- [DataLength(100)]
- public string StdMaxFormula
- {
- get { return stdMaxFormula; }
- set { stdMaxFormula = value; }
- }
- /// <summary>
- /// 标准负值(mm)(客)
- /// </summary>
- [Description("标准负值(mm)")]
- [Nullable(true)]
- [DataLength(10)]
- public string StdMinVal1
- {
- get { return stdMinVal1; }
- set { stdMinVal1 = value; }
- }
- /// <summary>
- /// 标准正值(mm)(客)
- /// </summary>
- [Description("标准正值(mm)")]
- [Nullable(true)]
- [DataLength(10)]
- public string StdMaxVal1
- {
- get { return stdMaxVal1; }
- set { stdMaxVal1 = value; }
- }
- /// <summary>
- /// 标准负值(%)(客)
- /// </summary>
- [Description("标准负值(%)")]
- [Nullable(true)]
- [DataLength(10)]
- public string StdMinPercent1
- {
- get { return stdMinPercent1; }
- set { stdMinPercent1 = value; }
- }
- /// <summary>
- /// 标准正值(%) (客)
- /// </summary>
- [Description("标准正值(%)")]
- [Nullable(true)]
- [DataLength(10)]
- public string StdMaxPercent1
- {
- get { return stdMaxPercent1; }
- set { stdMaxPercent1 = value; }
- }
- /// <summary>
- /// 标准公式负值(mm) (客)
- /// </summary>
- [Description("标准公式负值(mm)")]
- [Nullable(true)]
- [DataLength(100)]
- public string StdMinFormula1
- {
- get { return stdMinFormula1; }
- set { stdMinFormula1 = value; }
- }
- /// <summary>
- /// 标准公式正值(mm)(客)
- /// </summary>
- [Description("标准公式正值(mm)")]
- [Nullable(true)]
- [DataLength(100)]
- public string StdMaxFormula1
- {
- get { return stdMaxFormula1; }
- set { stdMaxFormula1 = value; }
- }
- /// <summary>
- /// 下偏差值
- /// </summary>
- [Description("下偏差值")]
- [Nullable(true)]
- [DataLength(10)]
- public string DiffValueMin
- {
- get { return diffValueMin; }
- set { diffValueMin = value; }
- }
- /// <summary>
- /// 上偏差值
- /// </summary>
- [Description("上偏差值")]
- [Nullable(true)]
- [DataLength(10)]
- public string DiffValueMax
- {
- get { return diffValueMax; }
- set { diffValueMax = value; }
- }
- }
- }
|