mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2026-06-24 09:12:08 +08:00
104 lines
2.7 KiB
C#
104 lines
2.7 KiB
C#
|
|
//------------------------------------------------------------------------------
|
|||
|
|
// 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; }
|
|||
|
|
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|