using CZKJ.GBRS2.Model;
using System;
using System.Collections.Generic;
using System.Text;
namespace CZKJ.GBRS2.ViewModel
{
///
/// 个人中心Model
///
public class CustomerInfoViewModel
{
///
/// 当前登录客户的用户信息
///
// public UserInfoModel CustomerInfo { get; set; }
///
/// 跟随用户一起来的保单号
///
public IList ContNos { get; set; }
///
/// 保单概要列表
///
public List ReportList { get; set; } = new List();
}
public class ReportNoList
{
///
/// 保单号
///
public string ContNo { get; set; }
///
/// 生效日期
///
public string StartTime { get; set; }
///
/// 状态
///
public string State { get; set; }
}
public class ReportNoListModel
{
///
/// 保单号
///
public string ContNo { get; set; }
///
/// 生效日期
///
public DateTime StartTime { get; set; }
///
/// 状态
///
public string State { get; set; }
}
}