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

57 lines
1.7 KiB

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using QMFrameWork.WebUI.Attribute;
using System.Web.Mvc.Html;
using QMFrameWork.WebUI;
namespace QMAPP.MD.Web.Models
{
/// <summary>
/// 模块名称:配置明细表
/// 作 者:周晓东
/// 编写日期:20180705
/// </summary>
public class ConfigDetailModel : QDGModel
{
///<summary>
///班次信息主键
///</summary>
[Description("主键")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 36)]
[DGColumn(Hidden = true, PrimaryKey = true)]
public string PID { get; set; }
/// <summary>
/// 主档类型编码
/// </summary>
[Description("主档类型编码")]
[DGColumn(Sortable = true, Width = 240, DataAlign = DataAlign.left)]
public string MainTypeCode { get; set; }
/// <summary>
/// 主档类型编码名字
/// </summary>
[Description("主档类型编码名字")]
[DGColumn(Sortable = true, Width = 240, DataAlign = DataAlign.left)]
public string MainTypeName { get; set; }
/// <summary>
/// 明细类型编码
/// </summary>
[Description("明细类型编码")]
[DGColumn(Sortable = true, Width = 240, DataAlign = DataAlign.left)]
public string DetailTypeCode { get; set; }
/// <summary>
/// 明细类型编码名字
/// </summary>
[Description("明细类型编码名字")]
[DGColumn(Sortable = true, Width = 240, DataAlign = DataAlign.left)]
public string DetailTypeName { get; set; }
}
}