using GDZZ.Core.Entity; using System.Collections.Generic; namespace GDZZ.Core.Service; public class XnCodeGenOutput { /// /// 作者姓名 /// public string AuthorName { get; set; } /// /// 是否移除表前缀 /// public string TablePrefix { get; set; } /// /// 生成方式 /// public string GenerateType { get; set; } /// /// 数据库表名 /// public string TableName { get; set; } /// /// 数据库表名(经过组装的) /// public string TableNameAss { get; set; } /// /// 代码包名 /// public string PackageName { get; set; } /// /// 生成时间(string类型的) /// public string CreateTimestring { get; set; } /// /// 数据库表中字段集合 /// public List ConfigList { get; set; } /// /// 业务名 /// public string BusName { get; set; } }