//------------------------------------------------------------------------------ // 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 { /// ///低代码平台应用管理 /// [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=""; } /// ///创建用户名 /// [Description("创建用户名")] public string Createusername { get; set; } /// ///创建时间 /// [Description("创建时间")] public DateTime Createtime { get; set; } /// ///应用描述 /// [Description("应用描述")] public string Description { get; set; } /// ///状态:0=开发中,1=已发布,2=已下线 /// [Description("状态:0=开发中,1=已发布,2=已下线")] public bool Status { get; set; } /// ///应用名称 /// [Description("应用名称")] public string Name { get; set; } /// ///更新用户ID /// [Description("更新用户ID")] public string Updateuserid { get; set; } /// ///创建用户ID /// [Description("创建用户ID")] public string Createuserid { get; set; } /// ///租户ID /// [Description("租户ID")] public string Tenantid { get; set; } /// ///更新用户名 /// [Description("更新用户名")] public string Updateusername { get; set; } /// ///更新时间 /// [Description("更新时间")] public DateTime? Updatetime { get; set; } /// ///应用图标 /// [Description("应用图标")] public string Icon { get; set; } } }