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.
40 lines
1018 B
40 lines
1018 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using QMFrameWork.Data.Attributes;
|
|
using System.Data;
|
|
using QMAPP.Entity;
|
|
|
|
namespace QMAPP.FJC.Entity.FileCopy.FIS
|
|
{
|
|
[DBTable(TableName = "T_AW_FISPLAN")]
|
|
public class FISPlan : BaseEntity
|
|
{
|
|
///<summary>
|
|
///主键
|
|
///</summary>
|
|
[DBColumn(ColumnName = "PID", DataType = DbType.String, IsKey = true)]
|
|
public string PID { get; set; }
|
|
|
|
///<summary>
|
|
///计划类别
|
|
///</summary>
|
|
[DBColumn(ColumnName = "PREFIX", DataType = DbType.String)]
|
|
public string PREFIX { get; set; }
|
|
|
|
|
|
///<summary>
|
|
///当前时间
|
|
///</summary>
|
|
[DBColumn(ColumnName = "DATASTR", DataType = DbType.String)]
|
|
public string DATASTR { get; set; }
|
|
|
|
|
|
///<summary>
|
|
///流水号
|
|
///</summary>
|
|
[DBColumn(ColumnName = "SEQSTR", DataType = DbType.String)]
|
|
public string SEQSTR { get; set; }
|
|
}
|
|
}
|
|
|