地铁二期项目正式开始

WorkOrderMyModel.cs 965B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. namespace YTSoft.BaseCallCenter.MVCWeb.Models
  6. {
  7. public class WorkOrderMyModel
  8. {
  9. //工单类型
  10. public int DType{get;set;}
  11. /// <summary>
  12. /// 业务类型数据
  13. /// </summary>
  14. public List<Model.T_Wo_WorkOrderType> WorkOrderTypeModelList { get; set; }
  15. /// <summary>
  16. /// 当前日期
  17. /// </summary>
  18. private DateTime _nowDateTime;
  19. public DateTime NowDateTime
  20. {
  21. set { _nowDateTime = value; }
  22. get { return DateTime.Now; }
  23. }
  24. private string _nowDate;
  25. public string NowDate
  26. {
  27. set { _nowDate = value; }
  28. get { return (DateTime.Now.ToString("yyyy-MM-dd")+" - "+DateTime.Now.ToString("yyyy-MM-dd")); }
  29. }
  30. public bool SeatFlag
  31. {
  32. get;
  33. set;
  34. }
  35. }
  36. }