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.
52 lines
1.4 KiB
52 lines
1.4 KiB
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>
|
|
/// 模块名称:条码替换记录
|
|
/// 作 者:张松男
|
|
/// 编写日期:2022年11月07日
|
|
/// </summary>
|
|
[DBTable(TableName = "T_AW_BarCodeReplace")]
|
|
public class BarCodeReplace : BaseEntity
|
|
{
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
[DBColumn(ColumnName = "PID", DataType = DbType.String, IsKey = true)]
|
|
public string PID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 新条码
|
|
/// </summary>
|
|
[DBColumn(ColumnName = "NewProductCode", DataType = DbType.String)]
|
|
public string NewProductCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 旧条码
|
|
/// </summary>
|
|
[DBColumn(ColumnName = "OldProductCode", DataType = DbType.String)]
|
|
public string OldProductCode { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 创建日期
|
|
/// </summary>
|
|
[DBColumn(ColumnName = "CREATEDATE", DataType = DbType.DateTime)]
|
|
public DateTime CREATEDATE { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 有效标志
|
|
/// </summary>
|
|
[DBColumn(ColumnName = "FLGDEL", DataType = DbType.String)]
|
|
public string FLGDEL { get; set; }
|
|
}
|
|
}
|
|
|