mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2026-06-23 17:02:07 +08:00
feat: 增加低代码功能
This commit is contained in:
104
OpenAuth.Repository/Domain/LowcodeApp.cs
Normal file
104
OpenAuth.Repository/Domain/LowcodeApp.cs
Normal file
@@ -0,0 +1,104 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// This code was generated by a CodeSmith Template.
|
||||
//
|
||||
// DO NOT MODIFY contents of this file. Changes to this
|
||||
// file will be lost if the code is regenerated.
|
||||
// Author:Yubao Li
|
||||
//------------------------------------------------------------------------------
|
||||
using System;
|
||||
using System.ComponentModel;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
using OpenAuth.Repository.Core;
|
||||
|
||||
namespace OpenAuth.Repository.Domain
|
||||
{
|
||||
/// <summary>
|
||||
///低代码平台应用管理
|
||||
/// </summary>
|
||||
[Table("LowcodeApp")]
|
||||
public class LowcodeApp : StringEntity
|
||||
{
|
||||
public LowcodeApp()
|
||||
{
|
||||
this.Createusername="";
|
||||
this.Createtime=DateTime.Now;
|
||||
this.Description="";
|
||||
this.Status=false;
|
||||
this.Name="";
|
||||
this.Updateuserid="";
|
||||
this.Createuserid="";
|
||||
this.Tenantid="";
|
||||
this.Updateusername="";
|
||||
this.Updatetime=DateTime.Now;
|
||||
this.Icon="";
|
||||
|
||||
}
|
||||
/// <summary>
|
||||
///创建用户名
|
||||
/// </summary>
|
||||
[Description("创建用户名")]
|
||||
public string Createusername { get; set; }
|
||||
|
||||
/// <summary>
|
||||
///创建时间
|
||||
/// </summary>
|
||||
[Description("创建时间")]
|
||||
public DateTime Createtime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
///应用描述
|
||||
/// </summary>
|
||||
[Description("应用描述")]
|
||||
public string Description { get; set; }
|
||||
|
||||
/// <summary>
|
||||
///状态:0=开发中,1=已发布,2=已下线
|
||||
/// </summary>
|
||||
[Description("状态:0=开发中,1=已发布,2=已下线")]
|
||||
public bool Status { get; set; }
|
||||
|
||||
/// <summary>
|
||||
///应用名称
|
||||
/// </summary>
|
||||
[Description("应用名称")]
|
||||
public string Name { get; set; }
|
||||
|
||||
/// <summary>
|
||||
///更新用户ID
|
||||
/// </summary>
|
||||
[Description("更新用户ID")]
|
||||
public string Updateuserid { get; set; }
|
||||
|
||||
/// <summary>
|
||||
///创建用户ID
|
||||
/// </summary>
|
||||
[Description("创建用户ID")]
|
||||
public string Createuserid { get; set; }
|
||||
|
||||
/// <summary>
|
||||
///租户ID
|
||||
/// </summary>
|
||||
[Description("租户ID")]
|
||||
public string Tenantid { get; set; }
|
||||
|
||||
/// <summary>
|
||||
///更新用户名
|
||||
/// </summary>
|
||||
[Description("更新用户名")]
|
||||
public string Updateusername { get; set; }
|
||||
|
||||
/// <summary>
|
||||
///更新时间
|
||||
/// </summary>
|
||||
[Description("更新时间")]
|
||||
public DateTime? Updatetime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
///应用图标
|
||||
/// </summary>
|
||||
[Description("应用图标")]
|
||||
public string Icon { get; set; }
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user