| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace CallCenterApi.Model
- {
- /// <summary>
- /// T_Wo_TempStorage:实体类(属性说明自动提取数据库字段的描述信息)
- /// </summary>
- [Serializable]
- public partial class T_Wo_TempStorage
- {
- public T_Wo_TempStorage()
- { }
- #region Model
- private int _f_id;
- private string _f_title;
- private string _f_contents;
- private DateTime? _f_createtime;
- private string _f_createby;
- private int? _f_type;
- private string _f_remark;
- /// <summary>
- ///
- /// </summary>
- public int F_Id
- {
- set { _f_id = value; }
- get { return _f_id; }
- }
- /// <summary>
- ///
- /// </summary>
- public string F_Title
- {
- set { _f_title = value; }
- get { return _f_title; }
- }
- /// <summary>
- ///
- /// </summary>
- public string F_Contents
- {
- set { _f_contents = value; }
- get { return _f_contents; }
- }
- /// <summary>
- ///
- /// </summary>
- public DateTime? F_CreateTime
- {
- set { _f_createtime = value; }
- get { return _f_createtime; }
- }
- /// <summary>
- ///
- /// </summary>
- public string F_CreateBy
- {
- set { _f_createby = value; }
- get { return _f_createby; }
- }
- /// <summary>
- /// 工单类型
- /// </summary>
- public int? F_Type
- {
- set { _f_type = value; }
- get { return _f_type; }
- }
- /// <summary>
- ///
- /// </summary>
- public string F_Remark
- {
- set { _f_remark = value; }
- get { return _f_remark; }
- }
- #endregion Model
- }
- }
|