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
{
///
/// 模块名称:配置明细表
/// 作 者:周晓东
/// 编写日期:20180705
///
public class ConfigDetailModel : QDGModel
{
///
///班次信息主键
///
[Description("主键")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 36)]
[DGColumn(Hidden = true, PrimaryKey = true)]
public string PID { get; set; }
///
/// 主档类型编码
///
[Description("主档类型编码")]
[DGColumn(Sortable = true, Width = 240, DataAlign = DataAlign.left)]
public string MainTypeCode { get; set; }
///
/// 主档类型编码名字
///
[Description("主档类型编码名字")]
[DGColumn(Sortable = true, Width = 240, DataAlign = DataAlign.left)]
public string MainTypeName { get; set; }
///
/// 明细类型编码
///
[Description("明细类型编码")]
[DGColumn(Sortable = true, Width = 240, DataAlign = DataAlign.left)]
public string DetailTypeCode { get; set; }
///
/// 明细类型编码名字
///
[Description("明细类型编码名字")]
[DGColumn(Sortable = true, Width = 240, DataAlign = DataAlign.left)]
public string DetailTypeName { get; set; }
}
}