schangxiang@126.com
2025-05-20 b5904672914f1088841208b4084fc7619576fa2e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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; }
    }
}