Files

19 lines
330 B
C#
Raw Permalink Normal View History

2026-04-30 11:34:41 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SamplePre.Models.Models
{
public class sys_dict_class
{
public int id { get; set; }
public string dict_type { get; set; }
public string remark { get; set; }
}
}