| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- using Core.Mes.Client.Comm.Attribute;
- using Newtonsoft.Json;
- using System;
- using System.ComponentModel;
- namespace Core.StlMes.Client.Qcm.model
- {
- /// <summary>
- /// 数据库表COM_BASE_PURCHASE_PROVIDER所对应的实体类(生成工具:代码生成工具4.0 访问地址:http://172.16.2.128/tool/)
- /// 作者:tgcx-test 时间:2016-07-26
- /// </summary>
- public class ComBasePurchaseProviderEntity
- {
- /// <summary>
- /// 采购协议代码
- /// </summary>
- private string agreementCode = "";
- /// <summary>
- /// 供应商代码
- /// </summary>
- private string suppCode = "";
- /// <summary>
- /// 供应商名称
- /// </summary>
- private string suppName = "";
- private bool? chk = false;
- /// <summary>
- /// 选择
- /// </summary>
- [Description("选择")]
- [Nullable(false)]
- [DataLength(20)]
- [JsonProperty("chk")]
- public bool? Chk
- {
- get { return chk; }
- set { chk = value; }
- }
- /// <summary>
- /// 采购协议代码
- /// </summary>
- [Description("采购协议代码")]
- [Nullable(false)]
- [DataLength(20)]
- [JsonProperty("agreementCode")]
- public string AgreementCode
- {
- get { return agreementCode; }
- set { agreementCode = value; }
- }
- /// <summary>
- /// 供应商代码
- /// </summary>
- [Description("供应商代码")]
- [Nullable(false)]
- [DataLength(64)]
- [JsonProperty("suppCode")]
- public string SuppCode
- {
- get { return suppCode; }
- set { suppCode = value; }
- }
- /// <summary>
- /// 供应商名称
- /// </summary>
- [Description("供应商名称")]
- [Nullable(false)]
- [DataLength(256)]
- [JsonProperty("suppName")]
- public string SuppName
- {
- get { return suppName; }
- set { suppName = value; }
- }
- }
- }
|