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
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Text;
 
namespace Operater.DbModel
{
    [SugarTable("sms_templete_type")]
    public class SmsTempleteType
    {
        public SmsTempleteType()
        {
 
        }
        /// <summary>
        /// 
        /// </summary>
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
        public System.Int32 Id { get; set; }
 
        /// <summary>
        /// 类型名字
        /// </summary>
        public System.String Typename { get; set; }
 
        /// <summary>
        /// 创建时间
        /// </summary>
        public System.DateTime? Createtime { get; set; }
 
        /// <summary>
        /// 是否显示:0:不显示 1:显示
        /// </summary>
        public System.Int32? Isshow { get; set; }
    }
}