36 lines
751 B
C#
36 lines
751 B
C#
using System;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using SqlSugar;
|
|
|
|
namespace SA.Entity.zxdcrm_Models
|
|
{
|
|
///<summary>
|
|
///
|
|
///</summary>
|
|
[SugarTable("res_mobile_md5")]
|
|
public partial class ResMobileMd5
|
|
{
|
|
public ResMobileMd5(){
|
|
|
|
|
|
}
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey=true,ColumnName="resid")]
|
|
public string Resid {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="md5")]
|
|
public string? Md5 {get;set;}
|
|
|
|
}
|
|
}
|