足力健后端,使用.netcore版本,合并1个项目使用

T_Sys_PlanManagemen.cs 5.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace System.Model
  5. {
  6. /// <summary>
  7. /// T_Sys_PlanManagemen:实体类(属性说明自动提取数据库字段的描述信息)
  8. /// </summary>
  9. [Serializable]
  10. public partial class T_Sys_PlanManagemen
  11. {
  12. public T_Sys_PlanManagemen()
  13. { }
  14. #region Model
  15. private int _f_id;
  16. private int? _f_type;
  17. private DateTime? _f_starttime;
  18. private DateTime? _f_endtime;
  19. private string _f_playdate;
  20. private string _f_broadcasttime;
  21. private int? _f_name;
  22. private float _f_broadcastduration;
  23. private int? _f_playcount;
  24. private int? _f_state;
  25. private int? _f_changetype;
  26. private DateTime? _f_changetime;
  27. private string _f_describe;
  28. private DateTime? _f_createtime;
  29. private string _f_createuser;
  30. private DateTime? _f_updatetime;
  31. private string _f_updateuser;
  32. private int? _f_isdelete;
  33. private DateTime? _f_deletetime;
  34. private string _f_deleteuser;
  35. /// <summary>
  36. /// ID
  37. /// </summary>
  38. public int F_Id
  39. {
  40. set { _f_id = value; }
  41. get { return _f_id; }
  42. }
  43. /// <summary>
  44. /// 0计划1媒体变更
  45. /// </summary>
  46. public int? F_Type
  47. {
  48. set { _f_type = value; }
  49. get { return _f_type; }
  50. }
  51. /// <summary>
  52. /// 计划开始时间
  53. /// </summary>
  54. public DateTime? F_StartTime
  55. {
  56. set { _f_starttime = value; }
  57. get { return _f_starttime; }
  58. }
  59. /// <summary>
  60. /// 计划结束时间
  61. /// </summary>
  62. public DateTime? F_EndTime
  63. {
  64. set { _f_endtime = value; }
  65. get { return _f_endtime; }
  66. }
  67. /// <summary>
  68. /// 播放日期
  69. /// </summary>
  70. public string F_PlayDate
  71. {
  72. set { _f_playdate = value; }
  73. get { return _f_playdate; }
  74. }
  75. /// <summary>
  76. /// 播出时间
  77. /// </summary>
  78. public string F_BroadcastTime
  79. {
  80. set { _f_broadcasttime = value; }
  81. get { return _f_broadcasttime; }
  82. }
  83. /// <summary>
  84. /// 广告名称(字典)
  85. /// </summary>
  86. public int? F_Name
  87. {
  88. set { _f_name = value; }
  89. get { return _f_name; }
  90. }
  91. /// <summary>
  92. /// 播出时长
  93. /// </summary>
  94. public float F_BroadcastDuration
  95. {
  96. set { _f_broadcastduration = value; }
  97. get { return _f_broadcastduration; }
  98. }
  99. /// <summary>
  100. /// 播放次数
  101. /// </summary>
  102. public int? F_PlayCount
  103. {
  104. set { _f_playcount = value; }
  105. get { return _f_playcount; }
  106. }
  107. /// <summary>
  108. /// 状态
  109. /// </summary>
  110. public int? F_State
  111. {
  112. set { _f_state = value; }
  113. get { return _f_state; }
  114. }
  115. /// <summary>
  116. /// 变更类型
  117. /// </summary>
  118. public int? F_ChangeType
  119. {
  120. set { _f_changetype = value; }
  121. get { return _f_changetype; }
  122. }
  123. /// <summary>
  124. /// 变更时间
  125. /// </summary>
  126. public DateTime? F_ChangeTime
  127. {
  128. set { _f_changetime = value; }
  129. get { return _f_changetime; }
  130. }
  131. /// <summary>
  132. /// 说明
  133. /// </summary>
  134. public string F_Describe
  135. {
  136. set { _f_describe = value; }
  137. get { return _f_describe; }
  138. }
  139. /// <summary>
  140. ///
  141. /// </summary>
  142. public DateTime? F_CreateTime
  143. {
  144. set { _f_createtime = value; }
  145. get { return _f_createtime; }
  146. }
  147. /// <summary>
  148. ///
  149. /// </summary>
  150. public string F_CreateUser
  151. {
  152. set { _f_createuser = value; }
  153. get { return _f_createuser; }
  154. }
  155. /// <summary>
  156. ///
  157. /// </summary>
  158. public DateTime? F_UpdateTime
  159. {
  160. set { _f_updatetime = value; }
  161. get { return _f_updatetime; }
  162. }
  163. /// <summary>
  164. ///
  165. /// </summary>
  166. public string F_UpdateUser
  167. {
  168. set { _f_updateuser = value; }
  169. get { return _f_updateuser; }
  170. }
  171. /// <summary>
  172. ///
  173. /// </summary>
  174. public int? F_IsDelete
  175. {
  176. set { _f_isdelete = value; }
  177. get { return _f_isdelete; }
  178. }
  179. /// <summary>
  180. ///
  181. /// </summary>
  182. public DateTime? F_DeleteTime
  183. {
  184. set { _f_deletetime = value; }
  185. get { return _f_deletetime; }
  186. }
  187. /// <summary>
  188. ///
  189. /// </summary>
  190. public string F_DeleteUser
  191. {
  192. set { _f_deleteuser = value; }
  193. get { return _f_deleteuser; }
  194. }
  195. #endregion Model
  196. }
  197. }