using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace GenerateCode_WeiBen_WMS.Model { internal class GenerateCodeConfigParam { public string 表名 { get; set; } public string 实体类名 { get; set; } public string 实体类对象名 { get; set; } public string 页面菜单名 { get; set; } public string 页面菜单对象缩写 { get; set; } public string 表的中文注解 { get; set; } public string 重复性校验字段 { get; set; } public string 删除提示字段 { get; set; } public string 模糊查询字段 { get; set; } public string 模糊查询字段名 { get; set; } public string 项目命名空间 { get; set; } public string 枚举类型字段集合 { get; set; } public string 前端根文件夹名称 { get; set; } public string 排序 { get; set; } } }