namespace Admin.NET.Application;
///
/// 基础批次表输出参数
///
public class BusBatchBaseOutput
{
///
/// 主键Id
///
public long Id { get; set; }
///
/// 省份Code
///
public string ProvinceCode { get; set; }
///
/// 省份Code 描述
///
public string ProvinceCodeProvinceCode { get; set; }
///
/// 省份
///
public string ProvinceName { get; set; }
///
/// 省份 描述
///
public string ProvinceNameProvinceName { get; set; }
///
/// 年份
///
public int Year { get; set; }
///
/// 批次名称
///
public string Batch { get; set; }
///
/// 类型
///
public string Course { get; set; }
///
/// 批次类型
///
public string BatchType { get; set; }
///
/// 批次分
///
public int Score { get; set; }
///
/// 压力分
///
public int PressureScore { get; set; }
///
/// 压力分区间
///
public string PressureRange { get; set; }
///
/// 批次最低分
///
public int MinScore { get; set; }
///
/// 批次最高分
///
public int MaxScore { get; set; }
///
/// 创建时间
///
public DateTime? CreateTime { get; set; }
///
/// 更新时间
///
public DateTime? UpdateTime { get; set; }
///
/// 创建者Id
///
public long? CreateUserId { get; set; }
///
/// 创建者姓名
///
public string? CreateUserName { get; set; }
///
/// 修改者Id
///
public long? UpdateUserId { get; set; }
///
/// 修改者姓名
///
public string? UpdateUserName { get; set; }
///
/// 软删除
///
public bool IsDelete { get; set; }
}
public class ProvinceBatchResultDto
{
public string ProvinceCode { get; set; }
public string ProvinceName { get; set; }
public int Year { get; set; }
///
/// 批次最低分
///
public int MinScore { get; set; }
///
/// 批次最高分
///
public int MaxScore { get; set; }
public List batches { get; set; }
}
public class ProvinceBatchItem
{
public int Year { get; set; }
public string Batch { get; set; }
public string Course { get; set; }
public string BatchType { get; set; }
public int Score { get; set; }
public int PressureScore { get; set; }
public string PressureRange { get; set; }
}