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.
63 lines
1.6 KiB
63 lines
1.6 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_MD_PACKAGESET", TimeStampColumn = "UPDATEDATE")]
|
||
|
public class PackageSet : BaseEntity
|
||
|
{
|
||
|
///<summary>
|
||
|
///主键
|
||
|
///</summary>
|
||
|
[DBColumn(ColumnName = "PID", DataType = DbType.String, IsKey = true)]
|
||
|
public string PID { 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 = "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; }
|
||
|
|
||
|
}
|
||
|
}
|