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.
56 lines
1.5 KiB
56 lines
1.5 KiB
3 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>
|
||
|
/// 模块名称:条码补打记录
|
||
|
/// 作 者:张松男
|
||
|
/// 编写日期:2021年05月21日
|
||
|
/// </summary>
|
||
|
[DBTable(TableName = "T_AW_BarCode_Replacement")]
|
||
|
public class BarCodeReplacement : BaseEntity
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 主键
|
||
|
/// </summary>
|
||
|
[DBColumn(ColumnName = "PID", DataType = DbType.String, IsKey = true)]
|
||
|
public string PID { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 类型
|
||
|
/// </summary>
|
||
|
[DBColumn(ColumnName = "Type", DataType = DbType.String)]
|
||
|
public string Type { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 条码号
|
||
|
/// </summary>
|
||
|
[DBColumn(ColumnName = "ProductCode", DataType = DbType.String)]
|
||
|
public string ProductCode { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 新增时间
|
||
|
/// </summary>
|
||
|
[DBColumn(ColumnName = "CreateTime", DataType = DbType.DateTime)]
|
||
|
public DateTime CreateTime { get; set; }
|
||
|
public DateTime BeginTime { get; set; }
|
||
|
public DateTime EndTime { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 新增用户
|
||
|
/// </summary>
|
||
|
[DBColumn(ColumnName = "CreateUser", DataType = DbType.String)]
|
||
|
public string CreateUser { get; set; }
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|