using Microsoft.EntityFrameworkCore; using System.ComponentModel.DataAnnotations.Schema; namespace Ewide.Core { /// /// 代码生成表 /// [Table("sys_code_gen")] [Comment("代码生成表")] public class SysCodeGen : DEntityBase { /// /// 作者姓名 /// [Comment("作者姓名")] public string AuthorName { get; set; } /// /// 是否移除表前缀 /// [Comment("是否移除表前缀")] public string TablePrefix { get; set; } /// /// 生成方式 /// [Comment("生成方式")] public string GenerateType { get; set; } /// /// 数据库表名 /// [Comment("数据库表名")] public string TableName { get; set; } /// /// 命名空间 /// [Comment("命名空间")] public string NameSpace { get; set; } /// /// 业务名 /// [Comment("业务名")] public string BusName { get; set; } } }