222
schangxiang@126.com
2025-05-04 90776aadd4531fa054c8679d240edfaba91e005f
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
30
31
32
33
34
35
36
37
38
39
40
using GenerateCode_GEBrilliantFactory;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace GenerateCode_WeiBen_WMS.Model
{
    /// <summary>
    /// 生成代码参数
    /// </summary>
    public class GenerateCodeParam
    {
        /// <summary>
        /// 模块简写
        /// </summary>
        public string Modulelogo { get; set; }
 
        /// <summary>
        /// 中文注释
        /// </summary>
        public string ChinaComment { get; set; }
 
        /// <summary>
        /// 列名列表
        /// </summary>
        public List<ColumnModel> ColumnNameList { get; set; } = new List<ColumnModel>();
 
        /// <summary>
        /// 实体名称
        /// </summary>
        public string EntityName { get; set; }
 
        /// <summary>
        /// 命名空间 
        /// </summary>
        public string NameSpacePath { get; set; }
    }
}