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.
41 lines
1.1 KiB
41 lines
1.1 KiB
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.Basic
|
|
{
|
|
[DBTable(TableName = "T_BD_PRINTMODELCOPY")]
|
|
public class PrintModelCopy : BaseEntity
|
|
{
|
|
///<summary>
|
|
///主键
|
|
///</summary>
|
|
[DBColumn(ColumnName = "PID", DataType = DbType.Int32, IsKey = true)]
|
|
public string PID { get; set; }
|
|
|
|
///<summary>
|
|
///目标路径文件
|
|
///</summary>
|
|
[DBColumn(ColumnName = "SOURCEDIR", DataType = DbType.String)]
|
|
public string SOURCEDIR { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[DBColumn(ColumnName = "DESDIR", DataType = DbType.String)]
|
|
public string DESDIR { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[DBColumn(ColumnName = "FILENAME", DataType = DbType.String)]
|
|
public string FILENAME { get; set; }
|
|
|
|
[DBColumn(ColumnName = "PRINTFLAG", DataType = DbType.String)]
|
|
public string PRINTFLAG { get; set; }
|
|
}
|
|
}
|
|
|