84 lines
2.2 KiB
C#
84 lines
2.2 KiB
C#
using System;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using SqlSugar;
|
|
|
|
namespace SA.Entity.zxdcrm_Models
|
|
{
|
|
///<summary>
|
|
///
|
|
///</summary>
|
|
[SugarTable("soft_user_bind")]
|
|
public partial class SoftUserBind
|
|
{
|
|
public SoftUserBind(){
|
|
|
|
|
|
}
|
|
/// <summary>
|
|
/// Desc:客户端com.dongniu
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="appid")]
|
|
public string? Appid {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:用户id
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="appuerid")]
|
|
public string? Appuerid {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:注册用户加密串
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="resid")]
|
|
public string? Resid {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:unionid
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="unionid")]
|
|
public string? Unionid {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:注册渠道号
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="channel")]
|
|
public int? Channel {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:软件客户端信息
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="livecode")]
|
|
public string? Livecode {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="ctime")]
|
|
public string? Ctime {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:注册ip
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="regip")]
|
|
public string? Regip {get;set;}
|
|
|
|
}
|
|
}
|