代理商管理
This commit is contained in:
23
Services/Hncore.Pass.Vpn/Domain/AgentPriceEntity.cs
Normal file
23
Services/Hncore.Pass.Vpn/Domain/AgentPriceEntity.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
using Hncore.Infrastructure.DDD;
|
||||
using System;
|
||||
|
||||
namespace Hncore.Pass.Vpn.Domain
|
||||
{
|
||||
public partial class AgentPriceEntity
|
||||
{
|
||||
/// <summary>
|
||||
/// ID
|
||||
/// <summary>
|
||||
public int id { get; set; }
|
||||
|
||||
public int product_id { get; set; }
|
||||
public int package_id { get; set; }
|
||||
|
||||
public int agent_id { get; set; }
|
||||
|
||||
public decimal price { get; set; }
|
||||
|
||||
public decimal refund { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user