| 123456789101112131415161718192021222324252627282930 |
- using System;
- using System.Collections.Generic;
- using System.Data;
- using System.Linq;
- using System.Web;
- namespace YTSoft.BaseCallCenter.MVCWeb.Models
- {
- public class CusPageModel
- {
- /// <summary>
- /// 客户类型
- /// </summary>
- public int cusType { get; set; }
- /// <summary>
- /// 当前日期
- /// </summary>
- private DateTime _nowDateTime;
- public DateTime NowDateTime
- {
- set { _nowDateTime = value; }
- get { return DateTime.Now; }
- }
- }
- }
|