using System; using System.Collections.Generic; using System.Text; namespace GxPress.Request.App.AppReport { /// /// 数据报表 /// public class AppReportRequest { /// /// /// public int Id { get; set; } /// /// 标题 /// public string Title { get; set; } /// /// 类型 1 财务 2出版 3人事 /// public int ReportType { get; set; } /// /// 图片地址 /// public string IocUrl { get; set; } } }