Files
juipnet/Services/Hncore.Pass.Vpn/Domain/AgentScoreEntity.cs

32 lines
719 B
C#
Raw Normal View History

2021-02-21 18:23:10 +08:00
using Hncore.Infrastructure.DDD;
using System;
namespace Hncore.Pass.Vpn.Domain
{
public partial class AgentScoreEntity
{
/// <summary>
/// ID
/// <summary>
public int id { get; set; }
/// <summary>
/// 代理id
/// </summary>
public int agent_id { get; set; }
public int order_id { get; set; }
public int score_type { get; set; }
public decimal score_value { get; set; }
public string remark { get; set; }
public string agent_name { get; set; }
public string op_user { get; set; }
public decimal rest_amount1 { get; set; }
public decimal rest_amount2 { get; set; }
}
}