using System; using System.Collections.Generic; namespace ChouBox.Model.Entities; public partial class AdvertType { public int Id { get; set; } public string Name { get; set; } = null!; public int? Sort { get; set; } }