using SqlSugar;
|
using System;
|
using System.Collections.Generic;
|
using System.Text;
|
|
namespace Operater.DbModel
|
{
|
/// <summary>
|
///
|
/// </summary>
|
|
[SugarTable("yz_auth_mobile")]
|
public class YzAuthMobile
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public YzAuthMobile()
|
{
|
}
|
|
/// <summary>
|
///
|
/// </summary>
|
[SugarColumn(ColumnName = "id", IsPrimaryKey = true)]
|
public System.String Id { get; set; }
|
|
/// <summary>
|
///
|
/// </summary>
|
[SugarColumn(ColumnName = "yz_open_id")]
|
public System.String YzOpenId { get; set; }
|
|
/// <summary>
|
///
|
/// </summary>
|
[SugarColumn(ColumnName = "mobile")]
|
public System.String Mobile { get; set; }
|
|
/// <summary>
|
///
|
/// </summary>
|
[SugarColumn(ColumnName = "create_time")]
|
public System.DateTime? CreateTime { get; set; }
|
}
|
}
|