Excelreport.cs
785 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
using System;
using System.ComponentModel.DataAnnotations.Schema;
namespace WebRepository
{
    /// <summary>
	/// EXCEL报表
	/// </summary>
    [Table("excelreport")]
    public partial class Excelreport : SysEntity
    {
        public Excelreport()
        {
        }
        /// <summary>
	    /// 名称
	    /// </summary>
        [Column("name")]
        public string Name { get; set; }
        /// <summary>
	    /// sql
	    /// </summary>
        [Column("sql")]
        public string Sql { get; set; }
        /// <summary>
	    /// 参数
	    /// </summary>
        [Column("params")]
        public string Params { get; set; }
        /// <summary>
	    /// 备注
	    /// </summary>
        [Column("remark")]
        public string Remark { get; set; }
    }
}