schangxiang@126.com
2024-04-23 f47411fb53aeee0c7bd514cbc841f9030349f448
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
@model Admin.NET.Application.Service.System.LowCode.Dto.Front_CodeGenerate
using Admin.NET.Core.Util.LowCode.Dto;
using System;
 
namespace @Model.NameSpace
{
    /// <summary>
    /// @(@Model.BusName)输出参数
    /// </summary>
    public class @(@Model.ClassName)Output
    {
@foreach (var column in Model.TableField){
if(@column.DtoNetType == "Front_FileDto[]"){
        @:/// <summary>
        @:/// @column.ColumnComment
        @:/// </summary>
        @:public ICollection<Front_FileDto> @column.ColumnName { get; set; }
        @:
        
        @:/// <summary>
        @:/// @column.ColumnComment
        @:/// </summary>
        @:public String @(@column.ColumnName)_Str { get; set; }
        @:
}else{
        @:/// <summary>
        @:/// @column.ColumnComment
        @:/// </summary>
        @:public @column.NetType @column.ColumnName { get; set; }
        @:
}
 
}
    }
}