You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
95 lines
2.3 KiB
95 lines
2.3 KiB
4 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
using QMFrameWork.Data.Attributes;
|
||
|
using QMAPP.Entity;
|
||
|
using System.Data;
|
||
|
|
||
|
namespace QMAPP.FJC.Entity.Operation
|
||
|
{
|
||
|
[DBTable(TableName = "T_AW_PACKAGE")]
|
||
|
public class Package : BaseEntity
|
||
|
{
|
||
|
///<summary>
|
||
|
///包装表主键
|
||
|
///</summary>
|
||
|
[DBColumn(ColumnName = "PID", DataType = DbType.String, IsKey = true)]
|
||
|
public string PID { get; set; }
|
||
|
|
||
|
|
||
|
|
||
|
///<summary>
|
||
|
///包装条码
|
||
|
///</summary>
|
||
|
[DBColumn(ColumnName = "PACKAGECODE", DataType = DbType.String)]
|
||
|
public string PACKAGECODE { get; set; }
|
||
|
|
||
|
|
||
|
|
||
|
///<summary>
|
||
|
///物料号
|
||
|
///</summary>
|
||
|
[DBColumn(ColumnName = "MATERIAL_CODE", DataType = DbType.String)]
|
||
|
public string MATERIAL_CODE { get; set; }
|
||
|
|
||
|
///<summary>
|
||
|
///容量
|
||
|
///</summary>
|
||
|
[DBColumn(ColumnName = "CAPACITY", DataType = DbType.Int32)]
|
||
|
public int CAPACITY { get; set; }
|
||
|
|
||
|
|
||
|
///<summary>
|
||
|
///使用数量
|
||
|
///</summary>
|
||
|
[DBColumn(ColumnName = "USINGCOUNT", DataType = DbType.Int32)]
|
||
|
public int USINGCOUNT { get; set; }
|
||
|
|
||
|
|
||
|
///<summary>
|
||
|
///使用状态
|
||
|
///</summary>
|
||
|
[DBColumn(ColumnName = "USINGSTATE", DataType = DbType.Int32)]
|
||
|
public int USINGSTATE { get; set; }
|
||
|
|
||
|
|
||
|
///<summary>
|
||
|
///创建用户
|
||
|
///</summary>
|
||
|
[DBColumn(ColumnName = "CREATEUSER", DataType = DbType.String)]
|
||
|
public string CREATEUSER { get; set; }
|
||
|
|
||
|
|
||
|
///<summary>
|
||
|
///创建时间
|
||
|
///</summary>
|
||
|
[DBColumn(ColumnName = "CREATEDATE", DataType = DbType.DateTime)]
|
||
|
public DateTime CREATEDATE { get; set; }
|
||
|
|
||
|
|
||
|
///<summary>
|
||
|
///更新用户
|
||
|
///</summary>
|
||
|
[DBColumn(ColumnName = "UPDATEUSER", DataType = DbType.String)]
|
||
|
public string UPDATEUSER { get; set; }
|
||
|
|
||
|
|
||
|
///<summary>
|
||
|
///更新时间
|
||
|
///</summary>
|
||
|
[DBColumn(ColumnName = "UPDATEDATE", DataType = DbType.DateTime)]
|
||
|
public DateTime UPDATEDATE { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 差值
|
||
|
/// </summary>
|
||
|
public int CAPACITY_USINGCOUNT { get; set; }
|
||
|
|
||
|
public int CAPACITY_SET { get; set; }
|
||
|
|
||
|
public string MATERIAL_NAME { get; set; }
|
||
|
|
||
|
}
|
||
|
}
|