CSharp-Single-EFCore/Bunny.Dao/Entity/System/Product.cs

12 lines
243 B
C#
Raw Normal View History

using Bunny.Dao.Entity.Base;
2024-08-08 22:23:36 +08:00
namespace Bunny.Dao.Entity.System;
2024-08-08 22:23:36 +08:00
public class Product : BaseEntity
2024-08-08 22:23:36 +08:00
{
public string? CustomerId { get; set; }
public string? CustomerName { get; set; }
public string? PackageType { get; set; }
}