using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Admin.NET.Application.Service { public class AIInfoDto { public string Url { get; set; } /// /// 志愿表 /// public string TableName { get; set; } /// ///批次名称 /// public string BatchName { get; set; } public string ProvinceName { get; set; } /// /// 志愿填报类型(智能填报|一键填报) /// public string Type { get; set; } /// /// 选科科目 /// public string SubjectClaim { get; set; } /// ///填报志愿选择成绩 /// public float Score { get; set; } } }