| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- using System;
- namespace CallCenterApi.Model
- {
- /// <summary>
- /// 附件工单关联表
- /// </summary>
- [Serializable]
- public partial class T_Sys_WorkFile
- {
- public T_Sys_WorkFile()
- { }
- #region Model
- private string _f_workorderid;
- private int _f_fileid;
- private int? _f_type;
- private int? _f_id;
- /// <summary>
- /// 登记流水号
- /// </summary>
- public string F_WorkOrderId
- {
- set { _f_workorderid = value; }
- get { return _f_workorderid; }
- }
- /// <summary>
- /// 附件id
- /// </summary>
- public int F_FileId
- {
- set { _f_fileid = value; }
- get { return _f_fileid; }
- }
- /// <summary>
- /// 附件所属(0投诉附件、1反馈附件)
- /// </summary>
- public int? F_Type
- {
- set { _f_type = value; }
- get { return _f_type; }
- }
- /// <summary>
- /// 反馈id
- /// </summary>
- public int? F_Id
- {
- set { _f_id = value; }
- get { return _f_id; }
- }
- #endregion Model
- }
- }
|