12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Entities.Business
- {
- [SugarTable("Bus_MsgPost")]
- public class Bus_MsgPostInfo : EntityBase
- {
-
-
-
- [SugarColumn(ColumnDescription = "发送平台", IsNullable = false, ColumnDataType = "varchar(30)")]
- public string Source { get; set; }
-
-
-
- [SugarColumn(ColumnDescription = "团组名称", IsNullable = false, ColumnDataType = "nvarchar(200)")]
- public string TeamNames { get; set; }
-
-
-
- [SugarColumn(ColumnDescription = "短信类型", IsNullable = false, ColumnDataType = "varchar(30)")]
- public string PostType { get; set; }
-
-
-
- [SugarColumn(ColumnDescription = "目标手机号码", IsNullable = false, ColumnDataType = "varchar(30)")]
- public string PhoneNumber { get; set; }
-
-
-
- [SugarColumn(ColumnDescription = "发送结果", IsNullable = false, ColumnDataType = "nvarchar(500)")]
- public string PostResult { get; set; }
- }
- }
|