using System;
|
using System.Collections.Generic;
|
using System.Text;
|
using System.Data;
|
using CSFrameworkV5.Core;
|
using CSFrameworkV5.Core.CodeGenerator;
|
|
namespace CSFrameworkV5.Models
|
{
|
/*===================================================================
|
* 程序说明: 的ORM模型
|
* 作者资料: 孙中吕
|
* 创建日期: 2024/05/30 04:02:30
|
* 最后修改: 2024/05/30 04:02:30
|
*
|
* 注: 本文件由代码生成器(Code Generator)自动生成。
|
* (此源码文件请放置在 YourProject.Models 模块)
|
* 版权所有 Copyright 2006~2024, C/S框架网(www.cscode.net)
|
*===================================================================*/
|
|
///<summary>
|
/// 数据表:MES_LINE的ORM模型(ORM Model),由Code Generator自动生成。
|
/// </summary>
|
[ORM_TableAttribute("MES_LINE", "ID", true)]
|
public class MES_LINE
|
{
|
public static readonly string __TableName = "MES_LINE";
|
|
public static readonly string __KeyName = "ID";
|
|
[ORM_FieldAttribute(DbType.String, 50, false, true, true, false, false)]
|
public static readonly string ID = "ID";
|
|
[ORM_FieldAttribute(DbType.String, 32, false, true, false, false,
|
false)]
|
public static readonly string LINE_NO = "LINE_NO";
|
|
//DeptName
|
[ORM_FieldAttribute(DbType.String, 100, false, true, false, false,
|
false)]
|
public static readonly string DeptName =
|
"DeptName";
|
|
[ORM_FieldAttribute(DbType.String, 64, false, true, false, false,
|
false)]
|
public static readonly string LINE_NAME = "LINE_NAME";
|
|
[ORM_FieldAttribute(DbType.String, 20, false, true, false, false,
|
false)]
|
public static readonly string WORKSHOP_CENTER_CODE =
|
"WORKSHOP_CENTER_CODE";
|
|
[ORM_FieldAttribute(DbType.String, 1000, false, true, false, false,
|
false)]
|
public static readonly string MEMO = "MEMO";
|
|
[ORM_FieldAttribute(DbType.String, 30, false, true, false, false,
|
false)]
|
public static readonly string CreatedBy = "CreatedBy";
|
|
[ORM_FieldAttribute(DbType.String, 30, false, true, false, false,
|
false)]
|
public static readonly string CreationDate = "CreationDate";
|
}
|
}
|