You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- using BPA.SAAS.Manage.Comm.Enum;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace BPA.SAAS.Manage.Application.System.Dtos
- {
- public class DictDataDto
- {
- public string Id { get; set; }
- /// <summary>
- /// 字典类型id
- /// </summary>
- public string TypeId { get; set; }
- /// <summary>
- /// 字典值
- /// </summary>
- public string Value { get; set; }
- /// <summary>
- /// 字典编码
- /// </summary>
- public string Code { get; set; }
- public string Status { get; set; }
- /// <summary>
- /// 备注
- /// </summary>
- public string Remark { get; set; }
- }
- }
|