| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace CallCenterApi.Model
- {
- [Serializable]
- public partial class T_Cus_Customerrecords
- {
- public T_Cus_Customerrecords()
- { }
- #region Model
- private int _f_id;
- private string _f_cuscode;
- private string _f_cuscodeuuid;
- private DateTime? _f_addtime;
- private int? _f_type;
- /// <summary>
- /// id,自增
- /// </summary>
- public int F_Id
- {
- set { _f_id = value; }
- get { return _f_id; }
- }
- /// <summary>
- /// 工单流水号
- /// </summary>
- public string F_Cuscode
- {
- set { _f_cuscode = value; }
- get { return _f_cuscode; }
- }
- /// <summary>
- /// 政府服务网工单流水号
- /// </summary>
- public string F_Cuscodeuuid
- {
- set { _f_cuscodeuuid = value; }
- get { return _f_cuscodeuuid; }
- }
- /// <summary>
- /// 添加时间
- /// </summary>
- public DateTime? F_AddTime
- {
- set { _f_addtime = value; }
- get { return _f_addtime; }
- }
- public int ? F_Type
- {
- set { _f_type = value; }
- get { return _f_type; }
- }
- #endregion Model
- }
- }
|