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

220 lines
6.6 KiB

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using System.Web.Mvc.Html;
using QMAPP.Web;
using QMFrameWork.WebUI;
using QMFrameWork.WebUI.Attribute;
namespace QMAPP.Web.Models.Sys
{
/// <summary>
/// 用户委托授权-业务权限
/// </summary>
public class UserEntrustPowerModel
{
/// <summary>
/// 主键
/// </summary>
[InputType(inputType.hidden)]
public string PID { get; set; }
/// <summary>
/// 委托用户
/// </summary>
[Description("委托用户")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 36, Width = 150)]
[InputType(inputType.text)]
public string ENTRUSTUSER { get; set; }
[Description("委托用户")]
[HTMLInput(UpdateRead = false, required = true)]
[InputType(inputType.hidden)]
[DGColumn(Hidden = false, Sortable = true, Width = 80)]
public string ENTRUSTUSERID { get; set; }
/// <summary>
/// 代理用户
/// </summary>
[Description("代理用户")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 36, Width = 150)]
[InputType(inputType.text)]
public string AGENTUSER { get; set; }
/// <summary>
/// 代理用户
/// </summary>
[Description("代理用户")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 36, Width = 150)]
[InputType(inputType.combobox)]
[DGColumn(Hidden = false, Sortable = true, Width = 80)]
public string AGENTUSERID { get; set; }
/// <summary>
/// 更新日期
/// </summary>
[Description("更新日期")]
[InputType(inputType.hidden)]
public DateTime UpdateDate { get; set; }
[Description("仓库")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 36)]
[InputType(inputType.text)]
public string CorpID { get; set; }
///<summary>
///仓库编号
///</summary>
[Description("仓库编号")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 4,Width=120)]
[InputType(inputType.text)]
public string CorpCode { get; set; }
///<summary>
///仓库名称
///</summary>
[Description("仓库名称")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 4,Width=120)]
[InputType(inputType.text)]
public string CorpName { get; set; }
///<summary>
///零件类别
///</summary>
[Description("零件类别")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 36)]
[InputType(inputType.text)]
public string MatSortID { get; set; }
///<summary>
///零件类别编号
///</summary>
[Description("零件类别编号")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 3, Width = 120)]
[InputType(inputType.text)]
public string MatSortNO { get; set; }
///<summary>
///零件类别名称
///</summary>
[Description("零件类别名称")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 50, Width = 120)]
[InputType(inputType.text)]
public string MatSortName { get; set; }
[Description("全部授权")]
[HTMLInput]
[InputType(inputType.checkBox)]
public bool AllLines { get; set; }
///<summary>
/// 路线
///</summary>
[Description("路线")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 36)]
[InputType(inputType.text)]
public string LineID { get; set; }
///<summary>
///路线编号
///</summary>
[Description("路线编号")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 3,Width=100)]
[InputType(inputType.text)]
public string LineNO { get; set; }
///<summary>
///路线名称
///</summary>
[Description("路线名称")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 3,Width=100)]
[InputType(inputType.combobox)]
public string LineName { get; set; }
///<summary>
///要货地
///</summary>
[Description("要货地")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 36)]
[InputType(inputType.text)]
public string PLACEDISID { get; set; }
///<summary>
///要货地编号
///</summary>
[Description("要货地编号")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 6, Width = 120)]
[InputType(inputType.text)]
public string PLACEDISNO { get; set; }
///<summary>
///要货地名称
///</summary>
[Description("要货地名称")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 50, Width = 120)]
[InputType(inputType.text)]
public string DESCRIBE_SITE { get; set; }
///<summary>
///发货地
///</summary>
[Description("发货地")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 36)]
[InputType(inputType.text)]
public string SENDPLACEID { get; set; }
///<summary>
///发货地编号
///</summary>
[Description("发货地编号")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 3, Width = 120)]
[InputType(inputType.text)]
public string SENDPLACENO { get; set; }
///<summary>
///发货地名称
///</summary>
[Description("发货地名称")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 50, Width = 120)]
[InputType(inputType.text)]
public string SENDPLACENAME { get; set; }
/// <summary>
/// 已选中仓库(逗号分隔)
/// </summary>
public string SelectedCorp { get; set; }
/// <summary>
/// 相关仓库
/// </summary>
public string CorpList { get; set; }
/// <summary>
/// 相关路线
/// </summary>
public string LineList { get; set; }
/// <summary>
/// 相关零件类别
/// </summary>
public string MatSortList { get; set; }
/// <summary>
/// 相关要货地
/// </summary>
public string RequestPlaceList { get; set; }
/// <summary>
/// 相关发货地
/// </summary>
public string SendPlaceList { get; set; }
}
}