using System;
|
using System.Collections.Generic;
|
|
namespace RiskControl.NewService.Entity.RiskControlRR
|
{
|
public class SysBusinessPlan:BaseEntity
|
{
|
public string Name { get; set; }
|
public string Type { get; set; }
|
public string FreeDesc { get; set; }
|
public string VipDesc { get; set; }
|
public string Unit { get; set; }
|
public DateTime CreateTime { get; set; } = DateTime.Now;
|
public int CreateUserId { get; set; }
|
/// <summary>
|
/// 排序字段,值越小优先级越高
|
/// </summary>
|
public int OrderId { get; set; }
|
}
|
|
public class SysBusinessPlanShow
|
{
|
public string Type { get; set; }
|
|
public List<SysBusinessPlan> SysBusinessPlanList { get; set; }
|
}
|
}
|