using CZFW.Framework.Model.ViewModel;
using System;
using System.Collections.Generic;
using System.Text;

namespace CZKJ.GBRS2.ViewModel
{
    public class ReportListViewModel
    {
       public List<ReportNoList> ReportNoList { get; set; } = new List<ReportNoList>();

        public CZKJ.GBRS2.Model.UserInfoModel User { get; set; }
        public string Head_Url { get; set; }

        public string NickName { get; set; }

        public int Count { get; set; }
    }
}