dev #3
|
|
@ -209,7 +209,7 @@ namespace Learn.Archives.API.Controllers
|
||||||
UserCenterId = s.Id,
|
UserCenterId = s.Id,
|
||||||
ReliefApplication=s.ReliefApplication?.Contains("已申请")??false,
|
ReliefApplication=s.ReliefApplication?.Contains("已申请")??false,
|
||||||
ReliefSubTime = s.ReliefSubTime,
|
ReliefSubTime = s.ReliefSubTime,
|
||||||
ReliefType =s.ReliefType?.ToEnum<ReliefSubTimeEnum>()
|
ReliefType =s.ReliefType,
|
||||||
});
|
});
|
||||||
userCenterImp.Add(new UserExcelExportData()
|
userCenterImp.Add(new UserExcelExportData()
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,23 +0,0 @@
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Text;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
|
|
||||||
namespace Learn.Archives.Core.Model.Enum
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// 学生减免类型
|
|
||||||
/// </summary>
|
|
||||||
public enum ReliefSubTimeEnum
|
|
||||||
{
|
|
||||||
低保户 = 10,
|
|
||||||
教师子女 = 20,
|
|
||||||
孤儿 = 30,
|
|
||||||
艺体生 = 40,
|
|
||||||
残疾学生 = 50,
|
|
||||||
领导特殊承诺减免 = 60,
|
|
||||||
领导同意的特殊贫困减免 = 70,
|
|
||||||
建卡贫困户 = 80,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -34,8 +34,8 @@ namespace Learn.Archives.Core.Model
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 减免申请类型
|
/// 减免申请类型
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[SugarColumn(IsNullable = true)]
|
[SugarColumn(IsNullable = true, Length = 20)]
|
||||||
public ReliefSubTimeEnum? ReliefType { get; set; }
|
public string? ReliefType { get; set; }
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 减免申请时间
|
/// 减免申请时间
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue