| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- /** 版本信息模板在安装目录下,可自行修改。
- * T_IntegratedScheduling_Detail.cs
- *
- * 功 能: N/A
- * 类 名: T_IntegratedScheduling_Detail
- *
- * Ver 变更日期 负责人 变更内容
- * ───────────────────────────────────
- * V0.01 2022/10/19 11:12:11 N/A 初版
- *
- * Copyright (c) 2012 Maticsoft Corporation. All rights reserved.
- *┌──────────────────────────────────┐
- *│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. │
- *│ 版权所有:动软卓越(北京)科技有限公司 │
- *└──────────────────────────────────┘
- */
- using System;
- namespace RMYY_CallCenter_Api.Model
- {
- /// <summary>
- /// T_IntegratedScheduling_Detail:实体类(属性说明自动提取数据库字段的描述信息)
- /// </summary>
- [Serializable]
- public partial class T_IntegratedScheduling_Detail
- {
- public T_IntegratedScheduling_Detail()
- {}
- #region Model
- private int _f_detailid;
- private string _f_workordercode;
- private int? _f_dicid;
- private string _f_dicname;
- private int? _f_number;
- private DateTime? _f_updatetime;
- private DateTime? _f_createtime;
- private int? _f_isdelete;
- /// <summary>
- ///
- /// </summary>
- public int F_DetailId
- {
- set{ _f_detailid=value;}
- get{return _f_detailid;}
- }
- /// <summary>
- ///
- /// </summary>
- public string F_WorkOrderCode
- {
- set{ _f_workordercode=value;}
- get{return _f_workordercode;}
- }
- /// <summary>
- ///
- /// </summary>
- public int? F_DicId
- {
- set{ _f_dicid=value;}
- get{return _f_dicid;}
- }
- /// <summary>
- ///
- /// </summary>
- public string F_DicName
- {
- set{ _f_dicname=value;}
- get{return _f_dicname;}
- }
- /// <summary>
- ///
- /// </summary>
- public int? F_Number
- {
- set{ _f_number=value;}
- get{return _f_number;}
- }
- /// <summary>
- ///
- /// </summary>
- public DateTime? F_UpdateTime
- {
- set{ _f_updatetime=value;}
- get{return _f_updatetime;}
- }
- /// <summary>
- ///
- /// </summary>
- public DateTime? F_CreateTime
- {
- set{ _f_createtime=value;}
- get{return _f_createtime;}
- }
- /// <summary>
- ///
- /// </summary>
- public int? F_IsDelete
- {
- set{ _f_isdelete=value;}
- get{return _f_isdelete;}
- }
- #endregion Model
- }
- }
|