| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace CallCenterApi.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
- }
- }
|