leo
2023-04-05 18c31016631b728fa704841b3445f97ff20df0c9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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; }
    }
}