| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- /** 版本信息模板在安装目录下,可自行修改。
- * T_FaultRepair_OperationLog.cs
- *
- * 功 能: N/A
- * 类 名: T_FaultRepair_OperationLog
- *
- * Ver 变更日期 负责人 变更内容
- * ───────────────────────────────────
- * V0.01 2022/8/16 16:36:24 N/A 初版
- *
- * Copyright (c) 2012 Maticsoft Corporation. All rights reserved.
- *┌──────────────────────────────────┐
- *│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. │
- *│ 版权所有:动软卓越(北京)科技有限公司 │
- *└──────────────────────────────────┘
- */
- using System;
- namespace RMYY_CallCenter_Api.Model
- {
- /// <summary>
- /// T_FaultRepair_OperationLog:实体类(属性说明自动提取数据库字段的描述信息)
- /// </summary>
- [Serializable]
- public partial class T_FaultRepair_OperationLog
- {
- public T_FaultRepair_OperationLog()
- {}
- #region Model
- private int _f_operationid;
- private string _f_workordercode;
- private string _f_operator;
- private string _f_logcontent;
- private int? _f_operationtype;
- private DateTime? _f_operationtime= DateTime.Now;
- private DateTime? _f_updatetime;
- private int? _f_isdelete=0;
- private string _f_aboutreason;
- private int? _f_aboutkey;
- private string _f_enterreason;
-
- //1、返修 2、挂起、3、退单、延时 相关的原因
- public string F_AboutReason
- {
- set { _f_aboutreason = value; }
- get { return _f_aboutreason; }
- }
- /// <summary>
- /// 返修 2、挂起、3、退单、延时 原因的 key,这个是字典的key
- /// </summary>
- public int? F_AboutKey
- {
- set { _f_aboutkey = value; }
- get { return _f_aboutkey; }
- }
- public string F_EnterReason
- {
- set { _f_enterreason = value; }
- get { return _f_enterreason; }
- }
- /// <summary>
- ///
- /// </summary>
- public int F_OperationId
- {
- set{ _f_operationid=value;}
- get{return _f_operationid;}
- }
- /// <summary>
- ///
- /// </summary>
- public string F_WorkOrderCode
- {
- set{ _f_workordercode=value;}
- get{return _f_workordercode;}
- }
- /// <summary>
- ///
- /// </summary>
- public string F_Operator
- {
- set{ _f_operator=value;}
- get{return _f_operator;}
- }
- /// <summary>
- ///
- /// </summary>
- public string F_LogContent
- {
- set{ _f_logcontent=value;}
- get{return _f_logcontent;}
- }
- /// <summary>
- ///
- /// </summary>
- public int? F_OperationType
- {
- set{ _f_operationtype=value;}
- get{return _f_operationtype;}
- }
- /// <summary>
- ///
- /// </summary>
- public DateTime? F_OperationTime
- {
- set{ _f_operationtime=value;}
- get{return _f_operationtime;}
- }
- /// <summary>
- ///
- /// </summary>
- public DateTime? F_UpdateTime
- {
- set{ _f_updatetime=value;}
- get{return _f_updatetime;}
- }
- /// <summary>
- ///
- /// </summary>
- public int? F_Isdelete
- {
- set{ _f_isdelete=value;}
- get{return _f_isdelete;}
- }
- #endregion Model
- }
- }
|