35 lines
1.2 KiB
C#
35 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace ZR.Model.System.Generate
|
|
{
|
|
/// <summary>
|
|
/// 代码生成表
|
|
/// </summary>
|
|
[SqlSugar.SugarTable("gen_table")]
|
|
public class GenTable
|
|
{
|
|
[SqlSugar.SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
|
|
public int TableId { get; set; }
|
|
public string TableName { get; set; }
|
|
public string TableComment { get; set; }
|
|
public string SubTableName { get; set; }
|
|
public string SubTableFkName { get; set; }
|
|
public string ClassName { get; set; }
|
|
public string TplCategory { get; set; }
|
|
public string PackageName { get; set; }
|
|
public string ModuleName { get; set; }
|
|
public string BusinessName { get; set; }
|
|
public string FunctionName { get; set; }
|
|
public string FunctionAuthor { get; set; }
|
|
public string GenType { get; set; }
|
|
public string Options { get; set; }
|
|
|
|
[SqlSugar.SugarColumn(IsOnlyIgnoreUpdate = true)]
|
|
public string CreateBy { get; set; }
|
|
[SqlSugar.SugarColumn(IsOnlyIgnoreUpdate = true)]
|
|
public DateTime CreateTime { get; set; }
|
|
}
|
|
}
|