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