| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- 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.PlnSaleOrd.炼钢计划.entity
- {
- /// <summary>
- /// 数据库表CRAFT_LG2_ALLOY所对应的实体类(生成工具:代码生成工具3.0)
- /// 作者:PC-20160925CXYF 时间:2017-09-03
- /// </summary>
- public class CraftLg2AlloyEntity
- {
- /// <summary>
- /// 合金配置方案ID(AOY+工艺卡号+6位流水)
- /// </summary>
- private string alloyGid = "";
- /// <summary>
- /// 物料编码
- /// </summary>
- private string itemCode = "";
- /// <summary>
- /// 物料名称
- /// </summary>
- private string itemName = "";
- /// <summary>
- /// 方案配置量(公斤)
- /// </summary>
- private decimal? inputAmount = null;
- /// <summary>
- /// 合金配置方案ID(AOY+工艺卡号+6位流水)
- /// </summary>
- [Description("合金配置")]
- [Nullable(false)]
- [DataLength(20)]
- public string AlloyGid
- {
- get { return alloyGid; }
- set { alloyGid = value; }
- }
- /// <summary>
- /// 物料编码
- /// </summary>
- [Description("物料编码")]
- [Nullable(false)]
- [DataLength(20)]
- public string ItemCode
- {
- get { return itemCode; }
- set { itemCode = value; }
- }
- /// <summary>
- /// 物料名称
- /// </summary>
- [Description("物料名称")]
- [Nullable(true)]
- [DataLength(8)]
- public string ItemName
- {
- get { return itemName; }
- set { itemName = value; }
- }
- /// <summary>
- /// 方案配置量(公斤)
- /// </summary>
- [Description("方案配置量(公斤)")]
- [Nullable(true)]
- [DataLength(10)]
- public decimal? InputAmount
- {
- get { return inputAmount; }
- set { inputAmount = value; }
- }
- /// <summary>
- /// 序号
- /// </summary>
- private string xh = "";
- [Description("序号")]
- public string Xh
- {
- get { return xh; }
- set { xh = value; }
- }
- }
- }
|