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.
53 lines
1000 B
53 lines
1000 B
4 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
using QMAPP.Entity;
|
||
|
using QMFrameWork.Data.Attributes;
|
||
|
using System.Data;
|
||
|
|
||
|
namespace QMAPP.FJC.Entity.FIS
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 描 述:记录查询实体
|
||
|
/// 时 间:2017年10月07日
|
||
|
/// 作 者:郭兆福
|
||
|
/// </summary>
|
||
|
[DBTable(TableName = "T_PP_PRODUCTWITHPLAN")]
|
||
|
public class ProductWithPlan : BaseEntity
|
||
|
{
|
||
|
///<summary>
|
||
|
///
|
||
|
///</summary>
|
||
|
[DBColumn(ColumnName = "PID", DataType = DbType.String, IsKey = true)]
|
||
|
public string PID { get; set; }
|
||
|
|
||
|
[DBColumn(ColumnName = "PRODUCT_PID", DataType = DbType.String)]
|
||
|
public string PRODUCT_PID { get; set; }
|
||
|
|
||
|
[DBColumn(ColumnName = "PLANID", DataType = DbType.String)]
|
||
|
public string PLANID { get; set; }
|
||
|
|
||
|
[DBColumn(ColumnName = "PLAN_TYPE", DataType = DbType.String)]
|
||
|
public string PLAN_TYPE { get; set; }
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
}
|
||
|
}
|