| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- 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;}
- /// <summary>
- /// 业务类型数据
- /// </summary>
- public List<Model.T_Wo_WorkOrderType> WorkOrderTypeModelList { get; set; }
- /// <summary>
- /// 当前日期
- /// </summary>
- 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;
- }
- }
- }
|