using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FlexJobApi.Core.Models.Common { /// /// 数据字典查询模型 /// public class DictionaryDataQueryModel { /// /// 编号 /// public string Code { get; set; } /// /// 名称 /// public string Name { get; set; } } }