You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
75 lines
2.9 KiB
75 lines
2.9 KiB
5 days ago
|
using System;
|
||
|
using SqlSugar;
|
||
|
using System.ComponentModel;
|
||
|
using System.ComponentModel.DataAnnotations;
|
||
|
using Admin.NET.Core;
|
||
|
namespace @Model.NameSpace
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// @(@Model.Description)
|
||
|
/// </summary>
|
||
|
[SugarTable("@(@Model.TableName)","@(@Model.Description)")]
|
||
|
[Tenant("@(@Model.ConfigId)")]
|
||
|
public class @(@Model.EntityName) @Model.BaseClassName
|
||
|
{
|
||
|
@foreach (var column in Model.TableField){
|
||
|
if(@Model.BaseClassName=="" && @column.IsPrimarykey){
|
||
|
@:/// <summary>
|
||
|
@:/// @column.ColumnDescription
|
||
|
@:/// </summary>
|
||
|
if(!@column.IsNullable){
|
||
|
@:[Required]
|
||
|
}
|
||
|
if(@column.DataType=="string"||@column.DataType=="string?"){
|
||
|
@:[SugarColumn(IsIdentity = @column.IsIdentity.ToString().ToLower(), ColumnDescription = "@column.ColumnDescription", IsPrimaryKey = true, Length = @column.Length)]
|
||
|
}
|
||
|
else{
|
||
|
@:[SugarColumn(IsIdentity = @column.IsIdentity.ToString().ToLower(), ColumnDescription = "@column.ColumnDescription", IsPrimaryKey = true)]
|
||
|
}
|
||
|
@:public @column.DataType @column.DbColumnName { get; set; }
|
||
|
}
|
||
|
else if(@Model.BaseClassName=="" && !@column.IsPrimarykey){
|
||
|
@:/// <summary>
|
||
|
@:/// @column.ColumnDescription
|
||
|
@:/// </summary>
|
||
|
if(!@column.IsNullable){
|
||
|
@:[Required]
|
||
|
}
|
||
|
if(@column.DataType=="string"||@column.DataType=="string?"){
|
||
|
@:[SugarColumn(ColumnDescription = "@column.ColumnDescription", Length = @column.Length)]
|
||
|
}else{
|
||
|
@:[SugarColumn(ColumnDescription = "@column.ColumnDescription")]
|
||
|
}
|
||
|
@:public @column.DataType @column.DbColumnName { get; set; }
|
||
|
}
|
||
|
else if(@Model.BaseClassName!="" && @column.IsPrimarykey && @column.DbColumnName.ToLower()!="id"){
|
||
|
@:/// <summary>
|
||
|
@:/// @column.ColumnDescription
|
||
|
@:/// </summary>
|
||
|
if(!@column.IsNullable){
|
||
|
@:[Required]
|
||
|
}
|
||
|
if(@column.DataType=="string"||@column.DataType=="string?"){
|
||
|
@:[SugarColumn(IsIdentity = @column.IsIdentity.ToString().ToLower(), ColumnDescription = "@column.ColumnDescription", IsPrimaryKey = true, Length = @column.Length)]
|
||
|
}else{
|
||
|
@:[SugarColumn(IsIdentity = @column.IsIdentity.ToString().ToLower(), ColumnDescription = "@column.ColumnDescription", IsPrimaryKey = true)]
|
||
|
}
|
||
|
@:public @column.DataType @column.DbColumnName { get; set; }
|
||
|
}
|
||
|
else if(@Model.BaseClassName!="" && !@column.IsPrimarykey && @column.DbColumnName.ToLower()!="id"){
|
||
|
@:/// <summary>
|
||
|
@:/// @column.ColumnDescription
|
||
|
@:/// </summary>
|
||
|
if(!@column.IsNullable){
|
||
|
@:[Required]
|
||
|
}
|
||
|
if(@column.DataType=="string"||@column.DataType=="string?"){
|
||
|
@:[SugarColumn(ColumnDescription = "@column.ColumnDescription", Length = @column.Length)]
|
||
|
}else{
|
||
|
@:[SugarColumn(ColumnDescription = "@column.ColumnDescription")]
|
||
|
}
|
||
|
@:public @column.DataType @column.DbColumnName { get; set; }
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|