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

12 lines
243 B
C#

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