namespace PMS.EntityModels.Product
{
using QWPlatform.DataIntface.Database;
using QWPlatform.Models;
///
/// 测试实体类
///
[Table("产品系统配置")]
public class CPJTPZModel : DataModelBase
{
//默认不带数据工厂构造
///
/// Initializes a new instance of the class.
///
public CPJTPZModel()
{
}
//带有数据工厂的实例化,可以直接操作数据
///
/// Initializes a new instance of the class.
///
/// The factory
public CPJTPZModel(DataFactory factory)
: base(factory)
{
}
///
/// Gets or sets the ID
///
[FieldBase("ID", "", "", true, false, "", 36, 0, "VARCHAR2")]
public string ID { get; set; }
///
/// Gets or sets the BM
///
[FieldBase("编码", "", "", false, false, "", 20, 0, "VARCHAR2")]
public string BM { get; set; }
///
/// Gets or sets the MC
///
[FieldBase("名称", "", "", false, false, "", 50, 0, "VARCHAR2")]
public string MC { get; set; }
///
/// Gets or sets the ZT
///
[FieldBase("状态", "(0-停用;1-正常;-1-删除)", "", false, false, "", 1, 0, "NUMBER")]
public int? ZT { get; set; }
///
/// Gets or sets the FZRID
///
[FieldBase("负责人ID", "", "", false, false, "", 36, 0, "VARCHAR2")]
public string FZRID { get; set; }
///
/// Gets or sets the FZR
///
[FieldBase("负责人", "", "", false, false, "", 20, 0, "VARCHAR2")]
public string FZR { get; set; }
///
/// Gets or sets the SM
///
[FieldBase("说明", "", "", false, false, "", 200, 0, "VARCHAR2")]
public string SM { get; set; }
///
/// 产品流程状态,可设置多个值
///
[FieldBase("产品流程状态", "", "", false, false, "", 200, 0, "VARCHAR2")]
public string CPLCZT { get; set; }
}
}