Merge branch 'master' of http://120.26.58.240:8888/r/ApiFlexJob
| | |
| | | 类别Id |
| | | </summary> |
| | | </member> |
| | | <member name="P:FlexJobApi.Core.GetDictionaryDatasQueryResultItem.CategoryCode"> |
| | | <summary> |
| | | 类别编号 |
| | | </summary> |
| | | </member> |
| | | <member name="P:FlexJobApi.Core.GetDictionaryDatasQueryResultItem.CategoryName"> |
| | | <summary> |
| | | 类别名称 |
| | | </summary> |
| | | </member> |
| | | <member name="P:FlexJobApi.Core.GetDictionaryDatasQueryResultItem.Category"> |
| | | <summary> |
| | | 类别 |
| | |
| | | 获取数据字典分页列表数据-结果-行数据-类别 |
| | | </summary> |
| | | </member> |
| | | <member name="P:FlexJobApi.Core.GetDictionaryDatasQueryResultItemCategory.Code"> |
| | | <summary> |
| | | 类别编号 |
| | | </summary> |
| | | </member> |
| | | <member name="P:FlexJobApi.Core.GetDictionaryDatasQueryResultItemCategory.Name"> |
| | | <summary> |
| | | 名称 |
| | |
| | | using MediatR; |
| | | using Mapster; |
| | | using MediatR; |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.ComponentModel.DataAnnotations; |
| | |
| | | /// 类别Id |
| | | /// </summary> |
| | | public Guid CategoryId { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 类别编号 |
| | | /// </summary> |
| | | [AdaptIgnore] |
| | | public string CategoryCode => Category?.Code; |
| | | |
| | | /// <summary> |
| | | /// 类别名称 |
| | | /// </summary> |
| | | [AdaptIgnore] |
| | | public string CategoryName => Category?.Name; |
| | | |
| | | /// <summary> |
| | | /// 类别 |
| | |
| | | public class GetDictionaryDatasQueryResultItemCategory |
| | | { |
| | | /// <summary> |
| | | /// 类别编号 |
| | | /// </summary> |
| | | public string Code { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 名称 |
| | | /// </summary> |
| | | public string Name { get; set; } |