zhaojs
2023-09-15 fc13938ff90213060532d99a600dea4a84456885
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
38
39
40
41
42
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Text;
 
namespace Operater.DbModel
{
    [SugarTable("sms_templete_list")]
    public class SmsTempleteList
    {
        public SmsTempleteList()
        {
 
        }
        /// <summary>
        /// 
        /// </summary>
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
        public System.Int32 Id { get; set; }
 
        /// <summary>
        /// 类型id
        /// </summary>
        public System.Int32? Templeteid { get; set; }
 
        /// <summary>
        /// 模板内容
        /// </summary>
        public System.String Templetecontent { get; set; }
 
        /// <summary>
        /// 创建时间
        /// </summary>
        public System.DateTime? Createtime { get; set; }
 
        /// <summary>
        /// 是否显示:0:不显示 1:显示
        /// </summary>
        public System.Int32? Isshow { get; set; }
 
    }
}