using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace YTSoft.BaseCallCenter.MVCWeb.Models { public class WorkOrderMyModel { //工单类型 public int DType{get;set;} /// /// 业务类型数据 /// public List WorkOrderTypeModelList { get; set; } /// /// 当前日期 /// private DateTime _nowDateTime; public DateTime NowDateTime { set { _nowDateTime = value; } get { return DateTime.Now; } } private string _nowDate; public string NowDate { set { _nowDate = value; } get { return (DateTime.Now.ToString("yyyy-MM-dd")+" - "+DateTime.Now.ToString("yyyy-MM-dd")); } } public bool SeatFlag { get; set; } } }