using System; using System.Collections.Generic; using System.Security.Cryptography; using System.Text; namespace ReZero.SuperAPI { /// /// 生成实体结构 /// public class TemplateEntitiesGen { /// /// 类名 /// public string? ClassName { get; set; } /// /// 表名 /// public string? TableName { get; set; } /// /// 备注 /// public string? Description { get; set; } /// /// 列集合 /// public List? PropertyGens { get; set; } } }