forked from tengge1/DTcms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsms_template.cs
61 lines (60 loc) · 1.37 KB
/
sms_template.cs
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
using System;
namespace DTcms.Model
{
/// <summary>
/// 手机短信模板
/// </summary>
[Serializable]
public partial class sms_template
{
public sms_template()
{ }
#region Model
private int _id;
private string _title = string.Empty;
private string _call_index = string.Empty;
private string _content = string.Empty;
private int _is_sys = 0;
/// <summary>
/// 自增ID
/// </summary>
public int id
{
set { _id = value; }
get { return _id; }
}
/// <summary>
/// 标题
/// </summary>
public string title
{
set { _title = value; }
get { return _title; }
}
/// <summary>
/// 调用别名
/// </summary>
public string call_index
{
set { _call_index = value; }
get { return _call_index; }
}
/// <summary>
/// 短信内容
/// </summary>
public string content
{
set { _content = value; }
get { return _content; }
}
/// <summary>
/// 系统默认
/// </summary>
public int is_sys
{
set { _is_sys = value; }
get { return _is_sys; }
}
#endregion
}
}