using SqlSugar; namespace YB.DeviceStand.Domain { /// /// 基类实体定义 /// public class EntityBase { /// /// 主键 /// [SugarColumn(IsPrimaryKey = true)] public Guid Id { get; set; } } }