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.
85 lines
2.5 KiB
85 lines
2.5 KiB
3 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
using QMAPP.Entity;
|
||
|
using QMFrameWork.Data.Attributes;
|
||
|
using System.ComponentModel;
|
||
|
using System.Data;
|
||
|
|
||
|
namespace QMAPP.MD.Entity.Bucket
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 模块名称:注塑打印记录
|
||
|
/// 作 者:张松男
|
||
|
/// 编写日期:2021年07月13日
|
||
|
/// </summary>
|
||
|
[DBTable(TableName = "T_MD_RawMaterialRecord")]
|
||
|
public class RawMaterialRecord : BaseEntity
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 主键
|
||
|
/// </summary>
|
||
|
[Description("主键")]
|
||
|
[DBColumn(ColumnName = "PID", DataType = DbType.String, IsKey = true)]
|
||
|
public string PID { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 投料ID
|
||
|
/// </summary>
|
||
|
[Description("投料ID")]
|
||
|
[DBColumn(ColumnName = "RawMaterialPID", DataType = DbType.String)]
|
||
|
public string RawMaterialPID { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 注塑条码
|
||
|
/// </summary>
|
||
|
[Description("注塑条码")]
|
||
|
[DBColumn(ColumnName = "ProductCode", DataType = DbType.String)]
|
||
|
public string ProductCode { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 物料号
|
||
|
/// </summary>
|
||
|
[Description("物料号")]
|
||
|
[DBColumn(ColumnName = "MaterialCode", DataType = DbType.String)]
|
||
|
public string MaterialCode { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 是否可用
|
||
|
/// </summary>
|
||
|
[Description("是否可用")]
|
||
|
[DBColumn(ColumnName = "IsCheck", DataType = DbType.String)]
|
||
|
public string IsCheck { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 创建用户
|
||
|
/// </summary>
|
||
|
[Description("创建用户")]
|
||
|
[DBColumn(ColumnName = "CREATEUSER", DataType = DbType.String)]
|
||
|
public string CREATEUSER { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 创建时间
|
||
|
/// </summary>
|
||
|
[Description("创建时间")]
|
||
|
[DBColumn(ColumnName = "CREATEDATE", DataType = DbType.String)]
|
||
|
public string CREATEDATE { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 修改用户
|
||
|
/// </summary>
|
||
|
[Description("修改用户")]
|
||
|
[DBColumn(ColumnName = "UPDATEUSER", DataType = DbType.String)]
|
||
|
public string UPDATEUSER { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 修改时间
|
||
|
/// </summary>
|
||
|
[Description("修改时间")]
|
||
|
[DBColumn(ColumnName = "UPDATEDATE", DataType = DbType.String)]
|
||
|
public string UPDATEDATE { get; set; }
|
||
|
|
||
|
}
|
||
|
}
|