using System.Data;
using Datory.Annotations;
namespace GxPress.Entity
{
///
/// 手机数据报表
///
[DataTable("tede_app_report")]
public class AppReport : Datory.Entity
{
///
/// 标题
///
[DataColumn]
public string Title { get; set; }
///
/// 类型 1 财务 2出版 人事
///
[DataColumn]
public int ReportType { get; set; }
///
/// 图片地址
///
[DataColumn]
public string IocUrl { get; set; }
}
}