DictDetailGenModel.cs
463 Bytes
using HHECS.Application.Enums;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HHECS.Test
{
public class DictDetailGenModel
{
public DictConst Dict { get; set; }
public string DetailCode { get; set; }
public string DetailName { get; set; }
public string DetailValue { get; set; }
public string DetailRemark { get; set; }
}
}