增加前端国际化刷新查询接口

This commit is contained in:
2023-06-28 16:04:24 +08:00
parent fd33e4c3d4
commit 0dcd74388f
6 changed files with 133 additions and 62 deletions
@@ -38,7 +38,7 @@ namespace IRaCIS.Core.Application.ViewModel
public Guid? Id { get; set; }
public int State { get; set; }
public string Description { get; set; } = string.Empty;
public string Code { get; set; }
public string Code { get; set; } = string.Empty;
public string Value { get; set; } = string.Empty;
public string ValueCN { get; set; } = string.Empty;
@@ -46,6 +46,13 @@ namespace IRaCIS.Core.Application.ViewModel
}
public class InternationalizationSimpleDto
{
public string Code { get; set; } = string.Empty;
public string Value { get; set; } = string.Empty;
public string ValueCN { get; set; } = string.Empty;
}
}