using Luban.Job.Common.RawDefs; using System.Collections.Generic; namespace Luban.Job.Db.RawDefs { public class Defines { public string TopModule { get; set; } = ""; public List Beans { get; set; } = new List(); public List Consts { get; set; } = new List(); public List Enums { get; set; } = new List(); public List DbTables { get; set; } = new List
(); } }