using SqlSugar; namespace EntrustSettle.Model.Models.DJY { [Tenant(DBConst.PingTai)] public class User { [SugarColumn(IsPrimaryKey = true)] public string GID { get; set; } public string SHOWNAME { get; set; } public string CompId { get; set; } public string COMNAME { get; set; } public bool IsLeave { get; set; } } }