using Bunny.Dao.Entity.Base; namespace Bunny.Dao.Entity.System; public class Product : BaseEntity { public string? CustomerId { get; set; } public string? CustomerName { get; set; } public string? PackageType { get; set; } }