| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178 |
- /** 版本信息模板在安装目录下,可自行修改。
- * T_Cus_CustomerExpand.cs
- *
- * 功 能: N/A
- * 类 名: T_Cus_CustomerExpand
- *
- * Ver 变更日期 负责人 变更内容
- * ───────────────────────────────────
- * V0.01 2015/2/27 16:06:05 N/A 初版
- *
- * Copyright (c) 2012 Maticsoft Corporation. All rights reserved.
- *┌──────────────────────────────────┐
- *│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. │
- *│ 版权所有:动软卓越(北京)科技有限公司 │
- *└──────────────────────────────────┘
- */
- using System;
- namespace ZXDT.CallCenter.Model
- {
- /// <summary>
- /// T_Cus_CustomerExpand:实体类(属性说明自动提取数据库字段的描述信息)
- /// </summary>
- [Serializable]
- public partial class T_Cus_CustomerExpand
- {
- public T_Cus_CustomerExpand()
- {}
- #region Model
- private Guid _f_expandid;
- private Guid _f_customerid;
- private string _f_strexpand1;
- private string _f_strexpand2;
- private string _f_strexpand3;
- private string _f_strexpand4;
- private string _f_strexpand5;
- private string _f_strexpand6;
- private string _f_typeexpand1;
- private string _f_typeexpand2;
- private int? _f_intexpand1;
- private int? _f_intexpand2;
- private DateTime? _f_timeexpand1;
- private DateTime? _f_timeexpand2;
- private string _f_textexpand1;
- private string _f_textexpand2;
- /// <summary>
- ///
- /// </summary>
- public Guid F_ExpandId
- {
- set{ _f_expandid=value;}
- get{return _f_expandid;}
- }
- /// <summary>
- ///
- /// </summary>
- public Guid F_CustomerId
- {
- set{ _f_customerid=value;}
- get{return _f_customerid;}
- }
- /// <summary>
- ///
- /// </summary>
- public string F_StrExpand1
- {
- set{ _f_strexpand1=value;}
- get{return _f_strexpand1;}
- }
- /// <summary>
- ///
- /// </summary>
- public string F_StrExpand2
- {
- set{ _f_strexpand2=value;}
- get{return _f_strexpand2;}
- }
- /// <summary>
- ///
- /// </summary>
- public string F_StrExpand3
- {
- set{ _f_strexpand3=value;}
- get{return _f_strexpand3;}
- }
- /// <summary>
- ///
- /// </summary>
- public string F_StrExpand4
- {
- set{ _f_strexpand4=value;}
- get{return _f_strexpand4;}
- }
- /// <summary>
- ///
- /// </summary>
- public string F_StrExpand5
- {
- set{ _f_strexpand5=value;}
- get{return _f_strexpand5;}
- }
- /// <summary>
- ///
- /// </summary>
- public string F_StrExpand6
- {
- set{ _f_strexpand6=value;}
- get{return _f_strexpand6;}
- }
- /// <summary>
- ///
- /// </summary>
- public string F_TypeExpand1
- {
- set{ _f_typeexpand1=value;}
- get{return _f_typeexpand1;}
- }
- /// <summary>
- ///
- /// </summary>
- public string F_TypeExpand2
- {
- set{ _f_typeexpand2=value;}
- get{return _f_typeexpand2;}
- }
- /// <summary>
- ///
- /// </summary>
- public int? F_IntExpand1
- {
- set{ _f_intexpand1=value;}
- get{return _f_intexpand1;}
- }
- /// <summary>
- ///
- /// </summary>
- public int? F_IntExpand2
- {
- set{ _f_intexpand2=value;}
- get{return _f_intexpand2;}
- }
- /// <summary>
- ///
- /// </summary>
- public DateTime? F_TimeExpand1
- {
- set{ _f_timeexpand1=value;}
- get{return _f_timeexpand1;}
- }
- /// <summary>
- ///
- /// </summary>
- public DateTime? F_TimeExpand2
- {
- set{ _f_timeexpand2=value;}
- get{return _f_timeexpand2;}
- }
- /// <summary>
- ///
- /// </summary>
- public string F_TextExpand1
- {
- set{ _f_textexpand1=value;}
- get{return _f_textexpand1;}
- }
- /// <summary>
- ///
- /// </summary>
- public string F_TextExpand2
- {
- set{ _f_textexpand2=value;}
- get{return _f_textexpand2;}
- }
- #endregion Model
- }
- }
|