#
luxiaotao1123
2022-03-01 5e4bef66a37f1bbdf48d845dda518fd8cc54ef37
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package com.zy.sc.common;
 
import com.core.generators.CoolGenerator;
import com.core.generators.constant.SqlOsType;
 
/**
 * Created by vincent on 2019-06-04
 */
public class CodeBuilder {
 
    public static void main(String[] args) throws Exception {
        CoolGenerator generator = new CoolGenerator();
        // mysql
        generator.sqlOsType = SqlOsType.SQL_SERVER;
        generator.url="47.97.1.152:51433;databasename=zypms";
        generator.username="sa";
        generator.password="Zoneyung@zy56$";
        generator.table="man_issue";
        // -------------------------------------------------------
        generator.packagePath="com.zy.sc.manager";
//        generator.js = false;
//        generator.html = false;
//        generator.htmlDetail = false;
//        generator.sql = false;
        generator.build();
    }
 
}