优化代码生成

This commit is contained in:
izory
2021-09-13 20:33:37 +08:00
parent e3d9b8103b
commit 59b44b3928
13 changed files with 626 additions and 25 deletions

View File

@@ -0,0 +1,45 @@
using System;
using System.Collections.Generic;
namespace ZR.Model.Models
{
/// <summary>
/// ,数据实体对象
/// </summary>
[SqlSugar.SugarTable("gen_demo")]
public class Gendemo
{
/// <summary>
/// 描述 :自增id
/// 空值 :False
/// 默认 :
/// </summary>
[SqlSugar.SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int? Id { get; set; }
/// <summary>
/// 描述 :名称
/// 空值 :False
/// 默认 :
/// </summary>
public string Name { get; set; }
/// <summary>
/// 描述 :图片
/// 空值 :True
/// 默认 :
/// </summary>
public string Icon { get; set; }
/// <summary>
/// 描述 :显示状态
/// 空值 :False
/// 默认 :
/// </summary>
public int? ShowStatus { get; set; }
/// <summary>
/// 描述 :添加时间
/// 空值 :True
/// 默认 :
/// </summary>