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.

15 lines
382 B
C#

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; }
}
}