12 lines
243 B
C#
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; }
|
|||
|
}
|