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.
44 lines
1.0 KiB
44 lines
1.0 KiB
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.FileCopy.FIS
|
|
{
|
|
|
|
[DBTable(TableName = "T_PP_ORDERPLANSERIAL")]
|
|
public class OrderPlanSerial : BaseEntity
|
|
{
|
|
|
|
///<summary>
|
|
///
|
|
///</summary>
|
|
[DBColumn(ColumnName = "PID", DataType = DbType.String, IsKey = true)]
|
|
public string PID { get; set; }
|
|
|
|
|
|
///<summary>
|
|
///类型
|
|
///</summary>
|
|
[DBColumn(ColumnName = "SERIAL_TYPE", DataType = DbType.String)]
|
|
public string SERIAL_TYPE { get; set; }
|
|
|
|
|
|
///<summary>
|
|
///流水号
|
|
///</summary>
|
|
[DBColumn(ColumnName = "SERIAL_NO", DataType = DbType.String)]
|
|
public int SERIAL_NO { get; set; }
|
|
|
|
|
|
///<summary>
|
|
///日期
|
|
///</summary>
|
|
[DBColumn(ColumnName = "SERIAL_DATE", DataType = DbType.String)]
|
|
public string SERIAL_DATE { get; set; }
|
|
|
|
}
|
|
}
|
|
|