You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
336 B
C#

using SqlSugar;
namespace EntrustSettle.Model.Models.DJY
{
[Tenant(DBConst.PingTai)]
[SugarTable("user_baseinfo")]
public class UserBaseInfo
{
[SugarColumn(IsPrimaryKey = true)]
public string GID { get; set; }
public string USERID { get; set; }
public string Mobile { get; set; }
}
}