import fly.generator.GeneratorApplication; public class SaleDataSource { public static void main(String[] args) { GeneratorApplication.builder() .url(String.format(DataSourceInfo.URL, "bytesailing_sale")) .username(DataSourceInfo.USER_NAME) .password(DataSourceInfo.PASSWORD) .port(9989) .module("hx-sale") .parent("com.fjhx.sale") .superServiceClass("com.ruoyi.common.core.service.BaseService") .build(); } }