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.
68 lines
1.8 KiB
68 lines
1.8 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.ComponentModel;
|
||
|
using System.Data;
|
||
|
|
||
|
namespace QMAPP.FJC.Entity.BZD
|
||
|
{
|
||
|
/// </summary>
|
||
|
/// 模块名称:BZD条码记录
|
||
|
/// 作 者:宁红钢
|
||
|
/// 编写日期:2020年04月29日
|
||
|
/// </summary>
|
||
|
[DBTable(TableName = "T_BD_BZDRecorder")]
|
||
|
public class BZDRecorder : BaseEntity
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 主键
|
||
|
/// </summary>
|
||
|
[DBColumn(ColumnName = "PID", DataType = DbType.String, IsKey = true)]
|
||
|
public string PID { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 物料PID
|
||
|
/// </summary>
|
||
|
[DBColumn(ColumnName = "MPID", DataType = DbType.String)]
|
||
|
public string MPID { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 总成物料号
|
||
|
/// </summary>
|
||
|
[DBColumn(ColumnName = "BZDCODE", DataType = DbType.String)]
|
||
|
public string BZDCODE { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 总成条码
|
||
|
/// </summary>
|
||
|
[DBColumn(ColumnName = "PRODUCTCODE", DataType = DbType.String)]
|
||
|
public string PRODUCTCODE { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 二维码头052
|
||
|
/// </summary>
|
||
|
[DBColumn(ColumnName = "Sequence", DataType = DbType.String)]
|
||
|
public string Sequence { 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; }
|
||
|
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|