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.
33 lines
728 B
33 lines
728 B
3 weeks ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Security.Cryptography;
|
||
|
using System.Text;
|
||
|
|
||
|
namespace ReZero.SuperAPI
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 生成实体结构
|
||
|
/// </summary>
|
||
|
public class TemplateEntitiesGen
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 类名
|
||
|
/// </summary>
|
||
|
public string? ClassName { get; set; }
|
||
|
/// <summary>
|
||
|
/// 表名
|
||
|
/// </summary>
|
||
|
public string? TableName { get; set; }
|
||
|
/// <summary>
|
||
|
/// 备注
|
||
|
/// </summary>
|
||
|
public string? Description { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 列集合
|
||
|
/// </summary>
|
||
|
public List<TemplatePropertyGen>? PropertyGens { get; set; }
|
||
|
|
||
|
}
|
||
|
}
|