| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162 |
- using System;
- namespace CallCenterApi.Model
- {
- /// <summary>
- /// 呈批表
- /// </summary>
- [Serializable]
- public partial class T_Bus_SubmitSuper
- {
- public T_Bus_SubmitSuper()
- { }
- #region Model
- private int _f_id;
- private string _f_workorderid;
- private string _f_batchreason;
- private string _f_superopinion;
- private string _f_createuser;
- private string _f_dealuser;
- private DateTime? _f_createtime;
- private DateTime? _f_dealtime;
- private int? _f_state;
- private string _f_backtype;
- private string _f_backreason;
- private int? _f_isdelete;
- private string _f_deleteuser;
- private DateTime? _f_deletetime;
- private string _f_file;
- private int? _f_type;
- /// <summary>
- /// 呈批id,自增
- /// </summary>
- public int F_Id
- {
- set { _f_id = value; }
- get { return _f_id; }
- }
- /// <summary>
- /// 登记流水号
- /// </summary>
- public string F_WorkOrderId
- {
- set { _f_workorderid = value; }
- get { return _f_workorderid; }
- }
- /// <summary>
- /// 呈批原因
- /// </summary>
- public string F_BatchReason
- {
- set { _f_batchreason = value; }
- get { return _f_batchreason; }
- }
- /// <summary>
- /// 领导批示
- /// </summary>
- public string F_SuperOpinion
- {
- set { _f_superopinion = value; }
- get { return _f_superopinion; }
- }
- /// <summary>
- /// 呈批人
- /// </summary>
- public string F_CreateUser
- {
- set { _f_createuser = value; }
- get { return _f_createuser; }
- }
- /// <summary>
- /// 审批人工号
- /// </summary>
- public string F_DealUser
- {
- set { _f_dealuser = value; }
- get { return _f_dealuser; }
- }
- /// <summary>
- /// 呈批时间
- /// </summary>
- public DateTime? F_CreateTime
- {
- set { _f_createtime = value; }
- get { return _f_createtime; }
- }
- /// <summary>
- /// 审批时间
- /// </summary>
- public DateTime? F_DealTime
- {
- set { _f_dealtime = value; }
- get { return _f_dealtime; }
- }
- /// <summary>
- /// 审批状态(0:草稿,1:正式,2:退回)
- /// </summary>
- public int? F_State
- {
- set { _f_state = value; }
- get { return _f_state; }
- }
- /// <summary>
- /// 退回类型
- /// </summary>
- public string F_BackType
- {
- set { _f_backtype = value; }
- get { return _f_backtype; }
- }
- /// <summary>
- /// 退回原因
- /// </summary>
- public string F_BackReason
- {
- set { _f_backreason = value; }
- get { return _f_backreason; }
- }
- /// <summary>
- ///
- /// </summary>
- public int? F_IsDelete
- {
- set { _f_isdelete = value; }
- get { return _f_isdelete; }
- }
- /// <summary>
- ///
- /// </summary>
- public string F_DeleteUser
- {
- set { _f_deleteuser = value; }
- get { return _f_deleteuser; }
- }
- /// <summary>
- ///
- /// </summary>
- public DateTime? F_DeleteTime
- {
- set { _f_deletetime = value; }
- get { return _f_deletetime; }
- }
- /// <summary>
- /// 附件
- /// </summary>
- public string F_File
- {
- set { _f_file = value; }
- get { return _f_file; }
- }
- /// <summary>
- /// 1领导批示 2市长指示
- /// </summary>
- public int? F_Type
- {
- set { _f_type = value; }
- get { return _f_type; }
- }
- #endregion Model
- }
- }
|