188 lines
5.1 KiB
C#
188 lines
5.1 KiB
C#
using System;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using SqlSugar;
|
|
|
|
namespace SA.Entity.zxdcrm_Models
|
|
{
|
|
///<summary>
|
|
///
|
|
///</summary>
|
|
[SugarTable("csvr_hgrecord")]
|
|
public partial class CsvrHgrecord
|
|
{
|
|
public CsvrHgrecord(){
|
|
|
|
|
|
}
|
|
/// <summary>
|
|
/// Desc:id自增
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey=true,IsIdentity=true,ColumnName="id")]
|
|
public int Id {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="pkid")]
|
|
public long Pkid {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="orderid")]
|
|
public long Orderid {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="recordid")]
|
|
public long Recordid {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="filename")]
|
|
public string? Filename {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="resid")]
|
|
public string? Resid {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="servicenumber")]
|
|
public string? Servicenumber {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="telnumberlast4")]
|
|
public string? Telnumberlast4 {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="timelength")]
|
|
public int? Timelength {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="saleseid")]
|
|
public long? Saleseid {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="timestart")]
|
|
public DateTime? Timestart {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="timeend")]
|
|
public DateTime? Timeend {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="ctime")]
|
|
public DateTime? Ctime {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="inneruserid")]
|
|
public long? Inneruserid {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="memoid")]
|
|
public long? Memoid {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="isdown")]
|
|
public int? Isdown {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="serverid")]
|
|
public string? Serverid {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:1
|
|
/// Nullable:True
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="recordtype")]
|
|
public int? Recordtype {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="content")]
|
|
public string? Content {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:公司编码
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="companycode")]
|
|
public string? Companycode {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:CURRENT_TIMESTAMP
|
|
/// Nullable:True
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="createtime")]
|
|
public DateTime? Createtime {get;set;}
|
|
|
|
}
|
|
}
|