ke_junjie
2025-06-04 84620534eb627e95811b971a4b552b6a177829bf
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
using iWare.Wms.Core.Util.LowCode.Front.Model;
using Furion.Extras.iWare.Wms.Service.LowCode.Dto;
 
namespace iWare.Wms.Application.Service.System.LowCode.Dto
{
    public class Front_CodeGenerate
    {
        public string TableName { get; set; }
        public string TableDesc { get; set; }
        public string AuthorName { get; set; }
        public string BusName { get; set; }
        public string NameSpace { get; set; }
        public string ProName { get; set; }
        public string DatabaseName { get; set; }
        public string ClassName { get; set; }
        public string CamelizeClassName { get; set; }
        public List<CodeGenConfig> QueryWhetherList { get; set; }
        public List<CodeGenConfig> TableField { get; set; }
        public List<CodeGenConfig> FileTableField { get; set; }
        public List<GenEntity_Field> Fields { get; set; }
 
        public long? LowCodeId { get; set; }
 
        public string FormDesign { get; set; }
 
        public string DynamicData { get; set; }
 
        public List<Front_Dynamic> DynamicLoad_Dict { get; set; }
 
        public bool IsFile { get; set; }
    }
}