自动化立体仓库 - WMS系统
#
luxiaotao1123
2020-06-15 4cef4cd611b226e2d62de9859049b180b1a23f58
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
package com.zy.common;
 
import com.core.generators.CoolGenerator;
 
/**
 * Created by vincent on 2019-06-04
 */
public class CodeBuilder {
 
    public static void main(String[] args) throws Exception {
        CoolGenerator generator = new CoolGenerator();
        // mysql
//        generator.url="localhost:3306/cool";
//        generator.username="root";
//        generator.password="xltys1995";
//        generator.table="sys_host";
        // sqlserver
        generator.url="192.168.1.108:1433;databasename=cool";
        generator.username="sa";
        generator.password="sa@123";
        generator.table="bas_mat_code";
        generator.packagePath="com.zy.asrs";
        generator.build();
    }
 
}