2020-10-07 20:25:03 +08:00
|
|
|
|
using Hncore.Infrastructure.DDD;
|
|
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Hncore.Pass.Vpn.Domain
|
|
|
|
|
|
{
|
|
|
|
|
|
public partial class ProductPriceSchemeEntity : EntityWithTime<int>
|
|
|
|
|
|
{
|
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
public string Remark { get; set; }
|
2021-04-20 18:42:47 +08:00
|
|
|
|
public int discount { get; set; }
|
2020-10-07 20:25:03 +08:00
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|