天津投入产出系统后端
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.
 
 
 
 
 
 

109 lines
3.4 KiB

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc.Html;
using QMFrameWork.WebUI.Attribute;
using QMFrameWork.WebUI;
namespace QMAPP.MD.Web.Models
{
/// <summary>
/// 模块名称:公司
/// 作 者:郭兆福
/// 编写日期:2017年05月05日
/// </summary>
public class CorpModel : QDGModel
{
///<summary>
///主键
///</summary>
[Description("")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 36)]
[DGColumn(Hidden = true, PrimaryKey = true)]
public string PID { get; set; }
///<summary>
///公司编码
///</summary>
[Description("公司编码")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 20, Width = 150)]
[InputType(inputType.text)]
public string CORP_CODE { get; set; }
///<summary>
///公司编码原值
///</summary>
public string CORP_CODE_OLD { get; set; }
///<summary>
///公司名称
///</summary>
[Description("公司名称")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 30,Width=400)]
[InputType(inputType.text)]
public string CORP_NAME { get; set; }
///<summary>
///公司简称
///</summary>
[Description("公司简称")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 15, Width = 150)]
[InputType(inputType.text)]
public string CORP_SHORT { get; set; }
///<summary>
///公司代码
///</summary>
[Description("公司代码")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 15, Width = 150)]
[InputType(inputType.text)]
public string Siteid { get; set; }
///<summary>
///公司组织机构
///</summary>
[Description("组织机构")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 15, Width = 150)]
[InputType(inputType.text)]
public string Orgid { get; set; }
///<summary>
///描述
///</summary>
[Description("描  述")]
[HTMLInput(UpdateRead = false, MaxLength = 100, Width = 400, Height = 50)]
[InputType(inputType.textArea)]
public string REMARK { get; set; }
/// <summary>
/// 创建用户
/// </summary>
[Description("创建用户")]
public string CREATEUSER { get; set; }
/// <summary>
/// 创建时间
/// </summary>
[Description("创建时间")]
[HTMLInput(UpdateRead = true, MaxLength = 20)]
[InputType(inputType.hidden)]
[DGColumn(Sortable = true, Width = 150, DataAlign = DataAlign.center, FormatDate = "yyyy-MM-dd hh:mm:ss")]
public DateTime CREATEDATE { get; set; }
/// <summary>
/// 更新用户
/// </summary>
[Description("更新用户")]
public string UPDATEUSER { get; set; }
/// <summary>
/// 更新时间
/// </summary>
[Description("更新时间")]
[HTMLInput(UpdateRead = true, MaxLength = 20)]
[InputType(inputType.hidden)]
[DGColumn(Sortable = true, Width = 150, DataAlign = DataAlign.center, FormatDate = "yyyy-MM-dd hh:mm:ss")]
public DateTime UPDATEDATE { get; set; }
}
}