60 lines
1.5 KiB
C#
60 lines
1.5 KiB
C#
using System;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using SqlSugar;
|
|
|
|
namespace SA.Entity.zxdcrm_Models
|
|
{
|
|
///<summary>
|
|
///资源id和外部联系人ID的联系
|
|
///</summary>
|
|
[SugarTable("ww_extuser_resid")]
|
|
public partial class WwExtuserResid
|
|
{
|
|
public WwExtuserResid(){
|
|
|
|
|
|
}
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey=true,ColumnName="resid")]
|
|
public string Resid {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:企业微信ID
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey=true,ColumnName="userid")]
|
|
public string Userid {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:时间
|
|
/// Default:CURRENT_TIMESTAMP
|
|
/// Nullable:False
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="ctime")]
|
|
public DateTime Ctime {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:公司编码
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="deptcode")]
|
|
public string? Deptcode {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:执行次数
|
|
/// Default:0
|
|
/// Nullable:True
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="putnum")]
|
|
public int? Putnum {get;set;}
|
|
|
|
}
|
|
}
|