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

65 lines
1.9 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;
using QMAPP.FJC.Entity.SendPlan;
namespace QMAPP.FJC.Web.Models.SendPlanManage
{
/// <summary>
/// 模块编号:M8-2
/// 作 用:发车统计分析页面模型
/// 作 者:王丹丹
/// 编写日期:2015年06月26日
///</summary>
public class SendStatisticsModel : QDGModel
{
///<summary>
///高低配
///</summary>
[Description("高低配")]
[HTMLInput(UpdateRead = false, required = true, JsonUtl = "/Dict/GetFixedComboxSource?kind=HAndL", MaxLength = 1)]
[InputType(inputType.combobox)]
public string VERSION { get; set; }
///<summary>
///颜色
///</summary>
[Description("颜色")]
[HTMLInput(UpdateRead = false, required = true, JsonUtl = "/Dict/GetFixedComboxSource?kind=COLOR", MaxLength = 1)]
[InputType(inputType.combobox)]
public string COLORCODE { get; set; }
/// <summary>
/// 日期
/// </summary>
[Description("日期")]
[HTMLInput(UpdateRead = true, MaxLength = 20)]
[InputType(inputType.datebox)]
public string CreateDateStart { get; set; }
/// <summary>
/// 至
/// </summary>
[Description("至")]
[HTMLInput(UpdateRead = true, MaxLength = 20)]
[InputType(inputType.datebox)]
public string CreateDateEnd { get; set; }
/// <summary>
/// 分组数量和
/// </summary>
[Description("分组数量和")]
public string Counts { get; set; }
/// <summary>
/// 集合
/// </summary>
public IList<SendPlanInfo> SendPlanInfoList { get; set; }
public string arr;
}
}