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; }
///
/// 字典类型id
///
public string TypeId { get; set; }
///
/// 字典值
///
public string Value { get; set; }
///
/// 字典编码
///
public string Code { get; set; }
public string Status { get; set; }
///
/// 备注
///
public string Remark { get; set; }
}
}