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