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.
88 lines
2.5 KiB
88 lines
2.5 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_AW_PRINTCODE", TimeStampColumn = "UPDATETIME")]
|
||
|
public class PrintCode : BaseEntity
|
||
|
{
|
||
|
|
||
|
///<summary>
|
||
|
///主键
|
||
|
///</summary>
|
||
|
[DBColumn(ColumnName = "PID", DataType = DbType.String, IsKey = true)]
|
||
|
public string PID { get; set; }
|
||
|
///<summary>
|
||
|
///本体条码
|
||
|
///</summary>
|
||
|
[DBColumn(ColumnName = "PRODUCTCODE", DataType = DbType.String)]
|
||
|
public string PRODUCTCODE { get; set; }
|
||
|
|
||
|
///<summary>
|
||
|
///零件名称
|
||
|
///</summary>
|
||
|
[DBColumn(ColumnName = "MATERIAL_NAME", DataType = DbType.String)]
|
||
|
public string MATERIAL_NAME { get; set; }
|
||
|
|
||
|
|
||
|
///<summary>
|
||
|
///最小值
|
||
|
///</summary>
|
||
|
[DBColumn(ColumnName = "MINVALUE", DataType = DbType.Int32)]
|
||
|
public int MINVALUE { get; set; }
|
||
|
///<summary>
|
||
|
///最大值
|
||
|
///</summary>
|
||
|
[DBColumn(ColumnName = "MAXVALUE", DataType = DbType.Int32)]
|
||
|
public int MAXVALUE { get; set; }
|
||
|
|
||
|
///<summary>
|
||
|
///配置
|
||
|
///</summary>
|
||
|
[DBColumn(ColumnName = "COLOR_CODE", DataType = DbType.String)]
|
||
|
public string COLOR_CODE { get; set; }
|
||
|
|
||
|
[DBColumn(ColumnName = "MAINCODE", DataType = DbType.String)]
|
||
|
public string MAINCODE { get; set; }
|
||
|
|
||
|
[DBColumn(ColumnName = "ISCOMPLETE", DataType = DbType.Int32)]
|
||
|
public int ISCOMPLETE { get; set; }
|
||
|
|
||
|
|
||
|
/// <summary>
|
||
|
/// 流水号
|
||
|
/// </summary>
|
||
|
[DBColumn(ColumnName = "SERIAL_NUM", DataType = DbType.Int32)]
|
||
|
public int SERIAL_NUM { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 前缀
|
||
|
/// </summary>
|
||
|
[DBColumn(ColumnName = "PRECODE", DataType = DbType.String)]
|
||
|
public String PRECODE { get; set; }
|
||
|
|
||
|
///<summary>
|
||
|
///操作时间
|
||
|
///</summary>
|
||
|
[DBColumn(ColumnName = "CREATETIME", DataType = DbType.DateTime)]
|
||
|
public DateTime CREATETIME { get; set; }
|
||
|
|
||
|
///<summary>
|
||
|
///更新时间
|
||
|
///</summary>
|
||
|
[DBColumn(ColumnName = "UPDATETIME", DataType = DbType.DateTime)]
|
||
|
public DateTime UPDATETIME { get; set; }
|
||
|
|
||
|
public string PRINT_TEMPALTE_TEM { get; set; }
|
||
|
|
||
|
public string PRINT_TEMPALTE_DATA { get; set; }
|
||
|
|
||
|
public string ShiftCode { get; set; }
|
||
|
}
|
||
|
}
|