Commit 93c0d591 authored by 吴春's avatar 吴春

AI模块提交

parent 8f5f946d
......@@ -11,14 +11,21 @@ namespace Edu.Common.YouDao
/// </summary>
public class YouDaoHelper
{
public static Dictionary<String, String[]> createRequestParams(string keyWord = "")
public static Dictionary<String, String[]> createRequestParams(string keyWord = "", string Grade = "")
{
// note: 将下列变量替换为需要请求的参数
// 取值参考文档: https://ai.youdao.com/DOCSIRMA/html/%E4%BD%9C%E6%96%87%E6%89%B9%E6%94%B9/API%E6%96%87%E6%A1%A3/%E8%8B%B1%E8%AF%AD%E4%BD%9C%E6%96%87%E6%89%B9%E6%94%B9%EF%BC%88%E5%9B%BE%E5%83%8F%E8%AF%86%E5%88%AB%EF%BC%89/%E8%8B%B1%E8%AF%AD%E4%BD%9C%E6%96%87%E6%89%B9%E6%94%B9%EF%BC%88%E5%9B%BE%E5%83%8F%E8%AF%86%E5%88%AB%EF%BC%89-API%E6%96%87%E6%A1%A3.html
return new Dictionary<string, string[]>() {
{ "q", new string[]{keyWord}},
};
Dictionary<string, string[]> keyValuePairs = new Dictionary<string, string[]>();
keyValuePairs.Add("q", new string[] { keyWord });
if (!string.IsNullOrWhiteSpace(Grade))
{
keyValuePairs.Add("grade", new string[] { Grade });
}
return keyValuePairs;
//return new Dictionary<string, string[]>() {
// { "q", new string[]{keyWord}},
//};
}
public static string readFileAsBaes64_V2(string path)
......
......@@ -27,6 +27,11 @@ namespace Edu.Model.ViewModel.AI
/// </summary>
public string StuName { get; set; }
/// <summary>
/// 学生数
/// </summary>
public int StunNum { get; set; }
/// <summary>
/// 是否启用 1-启用,2-禁用
/// </summary>
......@@ -37,5 +42,10 @@ namespace Edu.Model.ViewModel.AI
/// =1 查询有效的应用
/// </summary>
public int IsEffective { get; set; }
/// <summary>
/// 应用ids
/// </summary>
public string ApplicationIds { get; set; }
}
}
......@@ -15,9 +15,40 @@ namespace Edu.Model.ViewModel.AI
/// </summary>
public string SupplierName { get; set; }
/// <summary>
/// 学生数 -1,全部
/// </summary>
public int StudentNum { get; set; }
/// <summary>
/// 供应商启用/禁用状态1-启用,2-禁用
/// </summary>
public int SEnable { get; set; }
/// <summary>
/// 学生id
/// </summary>
public int StudentId { get; set; }
/// <summary>
/// =1 查询有效的应用
/// </summary>
public int IsEffective { get; set; }
public int DateType { get; set; }
/// <summary>
/// 有效开始时间
/// </summary>
public DateTime StuStartDate { get; set; }
/// <summary>
/// 有效结束时间
/// </summary>
public DateTime StuEndDate { get; set; }
/// <summary>
/// 供应商类型
/// </summary>
public int SupplierType { get; set; }
}
}
......@@ -55,6 +55,9 @@ namespace Edu.Repository.AI
{
builder.AppendFormat(" AND A.{0}={1} ", nameof(RB_AI_AuthorizeStudent_ViewModel.ApplicationId), query.ApplicationId);
}
if (!string.IsNullOrWhiteSpace(query.ApplicationIds)) {
builder.AppendFormat(" AND A.{0} in ({1}) ", nameof(RB_AI_AuthorizeStudent_ViewModel.ApplicationId), query.ApplicationIds);
}
if (query.IsEffective == 1)
{
builder.AppendFormat(" AND (A.{0}=2 or (A.{0} =1 AND DATE_FORMAT('{1}','%y-%m-%d')>=DATE_FORMAT(A.{2},'%y-%m-%d') AND DATE_FORMAT('{1}','%y-%m-%d')<=DATE_FORMAT(A.{3},'%y-%m-%d')) ) ", nameof(RB_AI_AuthorizeStudent_ViewModel.DateType), StringHelper.FormatDate(DateTime.Now), nameof(RB_AI_AuthorizeStudent_ViewModel.StartDate) , nameof(RB_AI_AuthorizeStudent_ViewModel.EndDate));
......@@ -104,14 +107,68 @@ namespace Edu.Repository.AI
}
if (query.StudentId > 0)
{
builder.AppendFormat(" AND A.{0}={1} ", nameof(RB_AI_AuthorizeStudent_ViewModel.StudentId), query.StudentId);
builder.AppendFormat(" AND (A.{0}={1} or A.{0}= -1) ", nameof(RB_AI_AuthorizeStudent_ViewModel.StudentId), query.StudentId);
}
if (query.ApplicationId > 0)
{
builder.AppendFormat(" AND A.{0}={1} ", nameof(RB_AI_AuthorizeStudent_ViewModel.ApplicationId), query.ApplicationId);
}
if (!string.IsNullOrWhiteSpace(query.ApplicationIds))
{
builder.AppendFormat(" AND A.{0} in ({1}) ", nameof(RB_AI_AuthorizeStudent_ViewModel.ApplicationId), query.ApplicationIds);
}
}
return GetPage<RB_AI_AuthorizeStudent_ViewModel>(pageIndex, pageSize, out rowsCount, builder.ToString(), parameters).ToList();
}
/// <summary>
/// 获取AI应用授权列表
/// </summary>
/// <param name="query"></param>
/// <returns></returns>
public List<RB_AI_AuthorizeStudent_ViewModel> GetStatisticsStudentList(RB_AI_AuthorizeStudent_ViewModel query)
{
StringBuilder builder = new StringBuilder();
var parameters = new DynamicParameters();
builder.AppendFormat(@"SELECT A.StudentId,A.ApplicationId,COUNT(*) as StunNum FROM RB_AI_AuthorizeStudent as A WHERE 1=1 ");
builder.AppendFormat(" AND A.{0}={1} ", nameof(RB_AI_AuthorizeStudent_ViewModel.Status), (int)DateStateEnum.Normal);
if (query != null)
{
if (query.Group_Id > 0)
{
builder.AppendFormat(" AND A.{0}={1} ", nameof(RB_AI_AuthorizeStudent_ViewModel.Group_Id), query.Group_Id);
}
if (query.ID > 0)
{
builder.AppendFormat(" AND A.{0}={1} ", nameof(RB_AI_AuthorizeStudent_ViewModel.ID), query.ID);
}
if (query.School_Id > 0)
{
builder.AppendFormat(" AND A.{0}={1} ", nameof(RB_AI_AuthorizeStudent_ViewModel.School_Id), query.School_Id);
}
if (query.StudentId > 0)
{
builder.AppendFormat(" AND (A.{0}={1} or A.{0}= -1) ", nameof(RB_AI_AuthorizeStudent_ViewModel.StudentId), query.StudentId);
}
if (query.ApplicationId > 0)
{
builder.AppendFormat(" AND A.{0}={1} ", nameof(RB_AI_AuthorizeStudent_ViewModel.ApplicationId), query.ApplicationId);
}
if (!string.IsNullOrWhiteSpace(query.ApplicationIds))
{
builder.AppendFormat(" AND A.{0} in ({1}) ", nameof(RB_AI_AuthorizeStudent_ViewModel.ApplicationId), query.ApplicationIds);
}
if (query.IsEffective == 1)
{
builder.AppendFormat(" AND (A.{0}=2 or (A.{0} =1 AND DATE_FORMAT('{1}','%y-%m-%d')>=DATE_FORMAT(A.{2},'%y-%m-%d') AND DATE_FORMAT('{1}','%y-%m-%d')<=DATE_FORMAT(A.{3},'%y-%m-%d')) ) ", nameof(RB_AI_AuthorizeStudent_ViewModel.DateType), StringHelper.FormatDate(DateTime.Now), nameof(RB_AI_AuthorizeStudent_ViewModel.StartDate), nameof(RB_AI_AuthorizeStudent_ViewModel.EndDate));
}
}
builder.AppendFormat(" GROUP BY A.StudentId,A.ApplicationId ");
return Get<RB_AI_AuthorizeStudent_ViewModel>(builder.ToString(), parameters).ToList();
}
}
}
using Edu.Common.Enum;
using Edu.Common.Plugin;
using Edu.Model.Entity.AI;
using Edu.Model.ViewModel.AI;
using System;
......@@ -45,7 +46,7 @@ namespace Edu.Repository.AI
}
if (query.Enable > 0)
{
builder.AppendFormat(" AND {0}={1} ", nameof(RB_AI_PresetsApplication_ViewModel.Enable), query.Enable);
builder.AppendFormat(" AND A.{0}={1} ", nameof(RB_AI_PresetsApplication_ViewModel.Enable), query.Enable);
}
if (!string.IsNullOrWhiteSpace(query.Name))
{
......@@ -86,7 +87,7 @@ namespace Edu.Repository.AI
}
if (query.Enable > 0)
{
builder.AppendFormat(" AND {0}={1} ", nameof(RB_AI_PresetsApplication_ViewModel.Enable), query.Enable);
builder.AppendFormat(" AND A.{0}={1} ", nameof(RB_AI_PresetsApplication_ViewModel.Enable), query.Enable);
}
if (!string.IsNullOrWhiteSpace(query.Name))
{
......@@ -96,5 +97,124 @@ namespace Edu.Repository.AI
}
return GetPage<RB_AI_PresetsApplication_ViewModel>(pageIndex, pageSize, out rowsCount, builder.ToString(), parameters).ToList();
}
/// <summary>
/// 根据学生id获取授权的应用列表
/// </summary>
/// <param name="query"></param>
/// <returns></returns>
public List<RB_AI_PresetsApplication_ViewModel> GetStuPresetsApplicationList(RB_AI_PresetsApplication_ViewModel query)
{
StringBuilder builder = new StringBuilder();
var parameters = new DynamicParameters();
builder.AppendFormat(@" SELECT A.*,b.Name as SupplierName,c.DateType,c.StartDate as StuStartDate,c.EndDate as StuEndDate FROM RB_AI_PresetsApplication as A
inner join RB_AI_AuthorizeStudent as c on c.ApplicationId=a.ID
left join RB_AI_Supplier as b on a.SupplierId=b.Id WHERE 1=1 ");
builder.AppendFormat(" AND A.{0}={1} ", nameof(RB_AI_PresetsApplication_ViewModel.Status), (int)DateStateEnum.Normal);
builder.AppendFormat(" AND B.{0}={1} ", nameof(RB_AI_Supplier.Status), (int)DateStateEnum.Normal);
builder.AppendFormat(" AND C.{0}={1} ", nameof(RB_AI_AuthorizeStudent.Status), (int)DateStateEnum.Normal);
if (query != null)
{
if (query.Group_Id > 0)
{
builder.AppendFormat(" AND A.{0}={1} ", nameof(RB_AI_PresetsApplication_ViewModel.Group_Id), query.Group_Id);
}
if (query.ID > 0)
{
builder.AppendFormat(" AND A.{0}={1} ", nameof(RB_AI_PresetsApplication_ViewModel.ID), query.ID);
}
if (query.School_Id > 0)
{
builder.AppendFormat(" AND A.{0}={1} ", nameof(RB_AI_PresetsApplication_ViewModel.School_Id), query.School_Id);
}
if (query.SupplierId > 0)
{
builder.AppendFormat(" AND A.{0}={1} ", nameof(RB_AI_PresetsApplication_ViewModel.SupplierId), query.SupplierId);
}
if (query.SupplierType > 0)
{
builder.AppendFormat(" AND B.{0}={1} ", nameof(RB_AI_Supplier_ViewModel.SupplierType), query.SupplierType);
}
if (query.Enable > 0)
{
builder.AppendFormat(" AND A.{0}={1} ", nameof(RB_AI_PresetsApplication_ViewModel.Enable), query.Enable);
builder.AppendFormat(" AND B.{0}={1} ", nameof(RB_AI_PresetsApplication_ViewModel.Enable), query.Enable);
}
if (!string.IsNullOrWhiteSpace(query.Name))
{
builder.AppendFormat(" AND A.{0} LIKE @Name ", nameof(RB_AI_PresetsApplication_ViewModel.Name));
parameters.Add("Name", "%" + query.Name.Trim() + "%");
}
if (query.IsEffective == 1)
{
builder.AppendFormat(" AND (c.{0}=2 or (c.{0} =1 AND DATE_FORMAT('{1}','%y-%m-%d')>=DATE_FORMAT(c.{2},'%y-%m-%d') AND DATE_FORMAT('{1}','%y-%m-%d')<=DATE_FORMAT(c.{3},'%y-%m-%d')) ) ", nameof(RB_AI_AuthorizeStudent_ViewModel.DateType), StringHelper.FormatDate(DateTime.Now), nameof(RB_AI_AuthorizeStudent_ViewModel.StartDate), nameof(RB_AI_AuthorizeStudent_ViewModel.EndDate));
}
if (query.StudentId > 0)
{
builder.AppendFormat(" AND (c.{0}={1} or c.{0}=-1 ) ", nameof(RB_AI_AuthorizeStudent_ViewModel.StudentId), query.StudentId);
}
}
return Get<RB_AI_PresetsApplication_ViewModel>(builder.ToString(), parameters).ToList();
}
/// <summary>
/// 根据学生id获取授权的应用分页列表
/// </summary>
/// <param name="query"></param>
/// <returns></returns>
public List<RB_AI_PresetsApplication_ViewModel> GetStuPresetsApplicationPageList(int pageIndex, int pageSize, out long rowsCount, RB_AI_PresetsApplication_ViewModel query)
{
StringBuilder builder = new StringBuilder();
var parameters = new DynamicParameters();
builder.AppendFormat(@" SELECT A.*,b.Name as SupplierName,c.DateType,c.StartDate as StuStartDate,c.EndDate as StuEndDate FROM RB_AI_PresetsApplication as A
inner join RB_AI_AuthorizeStudent as c on c.ApplicationId=a.ID
left join RB_AI_Supplier as b on a.SupplierId=b.Id WHERE 1=1 ");
builder.AppendFormat(" AND A.{0}={1} ", nameof(RB_AI_PresetsApplication_ViewModel.Status), (int)DateStateEnum.Normal);
builder.AppendFormat(" AND B.{0}={1} ", nameof(RB_AI_Supplier.Status), (int)DateStateEnum.Normal);
builder.AppendFormat(" AND C.{0}={1} ", nameof(RB_AI_AuthorizeStudent.Status), (int)DateStateEnum.Normal);
if (query != null)
{
if (query.Group_Id > 0)
{
builder.AppendFormat(" AND A.{0}={1} ", nameof(RB_AI_PresetsApplication_ViewModel.Group_Id), query.Group_Id);
}
if (query.ID > 0)
{
builder.AppendFormat(" AND A.{0}={1} ", nameof(RB_AI_PresetsApplication_ViewModel.ID), query.ID);
}
if (query.School_Id > 0)
{
builder.AppendFormat(" AND A.{0}={1} ", nameof(RB_AI_PresetsApplication_ViewModel.School_Id), query.School_Id);
}
if (query.SupplierId > 0)
{
builder.AppendFormat(" AND A.{0}={1} ", nameof(RB_AI_PresetsApplication_ViewModel.SupplierId), query.SupplierId);
}
if (query.SupplierType > 0)
{
builder.AppendFormat(" AND B.{0}={1} ", nameof(RB_AI_Supplier_ViewModel.SupplierType), query.SupplierType);
}
if (query.Enable > 0)
{
builder.AppendFormat(" AND A.{0}={1} ", nameof(RB_AI_PresetsApplication_ViewModel.Enable), query.Enable);
builder.AppendFormat(" AND B.{0}={1} ", nameof(RB_AI_PresetsApplication_ViewModel.Enable), query.Enable);
}
if (!string.IsNullOrWhiteSpace(query.Name))
{
builder.AppendFormat(" AND A.{0} LIKE @Name ", nameof(RB_AI_PresetsApplication_ViewModel.Name));
parameters.Add("Name", "%" + query.Name.Trim() + "%");
}
if (query.IsEffective == 1)
{
builder.AppendFormat(" AND (c.{0}=2 or (c.{0} =1 AND DATE_FORMAT('{1}','%y-%m-%d')>=DATE_FORMAT(c.{2},'%y-%m-%d') AND DATE_FORMAT('{1}','%y-%m-%d')<=DATE_FORMAT(c.{3},'%y-%m-%d')) ) ", nameof(RB_AI_AuthorizeStudent_ViewModel.DateType), StringHelper.FormatDate(DateTime.Now), nameof(RB_AI_AuthorizeStudent_ViewModel.StartDate), nameof(RB_AI_AuthorizeStudent_ViewModel.EndDate));
}
if (query.StudentId > 0)
{
builder.AppendFormat(" AND (c.{0}={1} or c.{0}=-1 ) ", nameof(RB_AI_AuthorizeStudent_ViewModel.StudentId), query.StudentId);
}
}
return GetPage<RB_AI_PresetsApplication_ViewModel>(pageIndex, pageSize, out rowsCount, builder.ToString(), parameters).ToList();
}
}
}
......@@ -259,6 +259,7 @@ namespace Edu.WebApi.Controllers.AI
SupplierName = extModel?.SupplierName ?? "",
SupplierId = extModel?.SupplierId ?? 0,
Enable = extModel?.Enable ?? 0,
StudentNum = extModel?.StudentNum ?? 0,
CreateTime = StringHelper.FormatDateTimeStr(extModel.CreateTime),
});
return ApiResult.Success(data: result);
......
......@@ -48,6 +48,39 @@ namespace Edu.WebApi.Controllers.AI
/// <returns></returns>
[HttpPost]
public ApiResult GetAuthorizeStudentBySIdList()
{
var query = new RB_AI_PresetsApplication_ViewModel();// Common.Plugin.JsonHelper.DeserializeObject<RB_AI_AuthorizeStudent_ViewModel>(RequestParm.Msg.ToString());
query.Group_Id = base.AppletUserInfo.Group_Id;
query.School_Id = base.AppletUserInfo.School_Id;
query.StudentId = this.AppletUserInfo.AccountId;
query.Enable = 1;
query.IsEffective = 1;
if (this.AppletUserInfo.AccountType != Common.Enum.User.AccountTypeEnum.Student)
{
return ApiResult.Failed("请用正确的账号登录");
}
var list = aiModule.GetStuPresetsApplicationList(query);
var result = list.Select(extModel => new
{
ID = extModel?.ID ?? 0,
PresetsApplicationName = extModel?.Name ?? "",
SupplierId = extModel?.SupplierId ?? 0,
SupplierName = extModel?.SupplierName ?? "",
DateType = extModel?.DateType ?? 0,
StartDate = StringHelper.FormatDateTimeStr(extModel.StuStartDate),
EndDate = StringHelper.FormatDateTimeStr(extModel.StuEndDate),
CreateTime = StringHelper.FormatDateTimeStr(extModel.CreateTime),
});
return ApiResult.Success(data: result);
}
/// <summary>
/// 根据学生id获取对应的应用
/// </summary>
/// <returns></returns>
[HttpPost]
public ApiResult GetAuthorizeStudentBySIdList_V2()
{
var query = new RB_AI_AuthorizeStudent_ViewModel();// Common.Plugin.JsonHelper.DeserializeObject<RB_AI_AuthorizeStudent_ViewModel>(RequestParm.Msg.ToString());
query.Group_Id = base.AppletUserInfo.Group_Id;
......@@ -76,8 +109,6 @@ namespace Edu.WebApi.Controllers.AI
return ApiResult.Success(data: result);
}
/// <summary>
/// 根据内容以及供应商获取ai内容
/// </summary>
......@@ -85,9 +116,11 @@ namespace Edu.WebApi.Controllers.AI
[HttpPost]
public ApiResult GetAIContentByKeyWord()
{
string keyWord = base.ParmJObj.GetStringValue("KeyWord");
keyWord = StringHelper.UrlDecode(keyWord);
int supplierId = base.ParmJObj.GetInt("SupplierId", 0);
string grade = base.ParmJObj.GetStringValue("Grade");
int Type = base.ParmJObj.GetInt("Type", 0);//1-英语作文批改(图像识别),2-英语作文批改(文本输入),3-中文作文批改(图像识别),4-中文作文批改(文本输入)
var supplierModel = aiModule.GetAI_SupplierEntity(supplierId);
string imgUrl = base.ParmJObj.GetStringValue("ImgUrl");
......@@ -152,7 +185,7 @@ namespace Edu.WebApi.Controllers.AI
postUrl = (Type == 2 ? "https://openapi.youdao.com/v2/correct_writing_text" : "https://openapi.youdao.com/correct_writing_cn_text");
}
// 添加请求参数
Dictionary<String, String[]> paramsMap = YouDaoHelper.createRequestParams(keyWord: keyWord);
Dictionary<String, String[]> paramsMap = YouDaoHelper.createRequestParams(keyWord: keyWord, Grade: grade);
// 添加鉴权相关参数
AuthV4Util.addAuthParams("4427e2bed8595678", basicConfigureModel.ApiKey, paramsMap);
Dictionary<String, String[]> header = new Dictionary<string, string[]>() { { "Content-Type", new String[] { "application/x-www-form-urlencoded" } } };
......@@ -168,6 +201,10 @@ namespace Edu.WebApi.Controllers.AI
Task.Run(() => { aiModule.SetAIUseLogModule(userLogModel); });
return ApiResult.Success(data: resStr);
}
else
{
return ApiResult.Failed(jsonObject.GetStringValue("msg"));
}
}
return ApiResult.Failed("获取失败");
}
......@@ -193,5 +230,53 @@ namespace Edu.WebApi.Controllers.AI
}
return ApiResult.Success();
}
/// <summary>
/// grade 级别
/// </summary>
/// <returns></returns>
[HttpPost]
[HttpGet]
[AllowAnonymous]
public ApiResult GetYouDaoGrade()
{
List<RB_AI_PresetsApplication_ViewModel> listChina = new List<RB_AI_PresetsApplication_ViewModel>();
listChina.Add(new RB_AI_PresetsApplication_ViewModel { Describe = "一年级", Content = "g1"});
listChina.Add(new RB_AI_PresetsApplication_ViewModel { Describe = "二年级", Content = "g2" });
listChina.Add(new RB_AI_PresetsApplication_ViewModel { Describe = "三年级", Content = "g3" });
listChina.Add(new RB_AI_PresetsApplication_ViewModel { Describe = "四年级", Content = "g4" });
listChina.Add(new RB_AI_PresetsApplication_ViewModel { Describe = "五年级", Content = "g5" });
listChina.Add(new RB_AI_PresetsApplication_ViewModel { Describe = "六年级", Content = "g6" });
listChina.Add(new RB_AI_PresetsApplication_ViewModel { Describe = "七年级", Content = "g7" });
listChina.Add(new RB_AI_PresetsApplication_ViewModel { Describe = "八年级", Content = "g8" });
listChina.Add(new RB_AI_PresetsApplication_ViewModel { Describe = "九年级", Content = "g9" });
listChina.Add(new RB_AI_PresetsApplication_ViewModel { Describe = "高一", Content = "g10" });
listChina.Add(new RB_AI_PresetsApplication_ViewModel { Describe = "高二", Content = "g11" });
listChina.Add(new RB_AI_PresetsApplication_ViewModel { Describe = "高三", Content = "g12" });
List<RB_AI_PresetsApplication_ViewModel> listEnglish = new List<RB_AI_PresetsApplication_ViewModel>();
listEnglish.Add(new RB_AI_PresetsApplication_ViewModel { Describe = "默认", Content = "default", Range = "100" });
listEnglish.Add(new RB_AI_PresetsApplication_ViewModel { Describe = "小学", Content = "elementary", Range = "100" });
listEnglish.Add(new RB_AI_PresetsApplication_ViewModel { Describe = "初中", Content = "junior", Range = "100" });
listEnglish.Add(new RB_AI_PresetsApplication_ViewModel { Describe = "高中", Content = "high", Range = "25" });
listEnglish.Add(new RB_AI_PresetsApplication_ViewModel { Describe = "四级", Content = "cet4", Range = "106.5" });
listEnglish.Add(new RB_AI_PresetsApplication_ViewModel { Describe = "六级", Content = "cet6", Range = "106.5" });
listEnglish.Add(new RB_AI_PresetsApplication_ViewModel { Describe = "考研", Content = "graduate", Range = "20" });
listEnglish.Add(new RB_AI_PresetsApplication_ViewModel { Describe = "考研英语(一)大作文", Content = "graduate_b1", Range = "20" });
listEnglish.Add(new RB_AI_PresetsApplication_ViewModel { Describe = "考研英语(一)小作文", Content = "graduate_a1", Range = "10" });
listEnglish.Add(new RB_AI_PresetsApplication_ViewModel { Describe = "考研英语(二)小作文", Content = "graduate_a2", Range = "10" });
listEnglish.Add(new RB_AI_PresetsApplication_ViewModel { Describe = "考研英语(二)大作文", Content = "graduate_b2", Range = "15" });
listEnglish.Add(new RB_AI_PresetsApplication_ViewModel { Describe = "托福", Content = "toefl", Range = "30" });
listEnglish.Add(new RB_AI_PresetsApplication_ViewModel { Describe = "托福-独立写作", Content = "toefl_independent", Range = "30" });
listEnglish.Add(new RB_AI_PresetsApplication_ViewModel { Describe = "托福-综合写作", Content = "toefl_comprehensive", Range = "30" });
listEnglish.Add(new RB_AI_PresetsApplication_ViewModel { Describe = "GRE", Content = "gre", Range = "6" });
listEnglish.Add(new RB_AI_PresetsApplication_ViewModel { Describe = "雅思", Content = "ielts", Range = "9" });
listEnglish.Add(new RB_AI_PresetsApplication_ViewModel { Describe = "雅思-task1", Content = "ielts_task1", Range = "9" });
listEnglish.Add(new RB_AI_PresetsApplication_ViewModel { Describe = "雅思-task2", Content = "ielts_task2", Range = "9" });
listEnglish.Add(new RB_AI_PresetsApplication_ViewModel { Describe = "学术写作", Content = "academic", Range = "100" });
return ApiResult.Success(data: new { ChinaGradeList = listChina.Select(x => new { Name = x.Describe, Value = x.Content }), EnglishGradeList = listEnglish.Select(x => new { Name = x.Describe, Value = x.Content, Score = x.Range }) });
}
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment