namespace Admin.NET.Application;
///
/// 各省份政策初始化表输出参数
///
public class BusProvinceInitializationOutput
{
///
/// 主键Id
///
public long Id { get; set; }
///
/// 省份Code
///
public string? Code { get; set; }
///
/// 省份名称
///
public string? Provincename { get; set; }
///
/// 政策类型
///
public int? Policy { get; set; }
///
/// 省份总分
///
public int? Allscore { 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 ProvinceInitializationOutputDto
{
///
/// 省份Code
///
public string? Code { get; set; }
///
/// 省份名称
///
public string? Provincename { get; set; }
///
/// 政策类型
///
public int? Policy { get; set; }
///
/// 省份总分
///
public int? Allscore { get; set; }
public List lizations { get; set; }
}
public class Lization
{
public string Name { get; set; }// "2025(现高三)",
public int Code { get; set; }// 2025
}