Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 1a6b333

Browse files
committed
Update Copyright
Copyright (c) 2015-2021 yanglb.com. All rights reserved.
1 parent 766ced9 commit 1a6b333

File tree

71 files changed

+200
-203
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+200
-203
lines changed

‎README.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,6 @@ cg msg.json msg.xlsx
8686

8787
## License
8888

89-
Copyright (c) 2015-2020 yanglb.com. All rights reserved.
89+
Copyright (c) 2015-2021 yanglb.com. All rights reserved.
9090

9191
Licensed under the [Apache License 2.0](LICENSE) license.

‎cg‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env sh
22

3-
# Copyright 2015-2020 yanglb.com
3+
# Copyright 2015-2021 yanglb.com
44
#
55
# Licensed under the Apache License, Version 2.0 (the "License");
66
# you may not use this file except in compliance with the License.

‎cg.bat‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@echo off
2-
REM Copyright 2015-2020 yanglb.com
2+
REM Copyright 2015-2021 yanglb.com
33
REM
44
REM Licensed under the Apache License, Version 2.0 (the "License");
55
REM you may not use this file except in compliance with the License.

‎install.ps1‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2015-2020 yanglb.com
1+
# Copyright 2015-2021 yanglb.com
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.

‎install.sh‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env sh
22

3-
# Copyright 2015-2020 yanglb.com
3+
# Copyright 2015-2021 yanglb.com
44
#
55
# Licensed under the Apache License, Version 2.0 (the "License");
66
# you may not use this file except in compliance with the License.

‎src/main/java/cg.java‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2015-2020 yanglb.com
2+
* Copyright 2015-2021 yanglb.com
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

‎src/main/java/com/yanglb/codegen/converter/BeanMapConverter.java‎

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2015-2020 yanglb.com
2+
* Copyright 2015-2021 yanglb.com
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -15,13 +15,13 @@
1515
*/
1616
package com.yanglb.codegen.converter;
1717

18-
import java.lang.reflect.Field;
19-
import java.util.Map;
20-
2118
import com.yanglb.codegen.exceptions.CodeGenException;
22-
import com.yanglb.codegen.utils.Resources;
2319
import com.yanglb.codegen.utils.ObjectUtil;
20+
import com.yanglb.codegen.utils.Resources;
2421
import com.yanglb.codegen.utils.StringUtil;
22+
import java.lang.reflect.Field;
23+
import java.util.Map;
24+
2525

2626
public class BeanMapConverter<T> {
2727

‎src/main/java/com/yanglb/codegen/converter/TableModelConverter.java‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2015-2020 yanglb.com
2+
* Copyright 2015-2021 yanglb.com
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -15,12 +15,12 @@
1515
*/
1616
package com.yanglb.codegen.converter;
1717

18+
import com.yanglb.codegen.exceptions.CodeGenException;
19+
import com.yanglb.codegen.model.TableModel;
1820
import java.util.ArrayList;
1921
import java.util.List;
2022
import java.util.Map;
2123

22-
import com.yanglb.codegen.model.TableModel;
23-
import com.yanglb.codegen.exceptions.CodeGenException;
2424

2525
public class TableModelConverter<T> {
2626

‎src/main/java/com/yanglb/codegen/core/GenFactory.java‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2015-2020 yanglb.com
2+
* Copyright 2015-2021 yanglb.com
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

‎src/main/java/com/yanglb/codegen/core/generator/BaseGenerator.java‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2015-2020 yanglb.com
2+
* Copyright 2015-2021 yanglb.com
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -18,11 +18,11 @@
1818
import com.yanglb.codegen.exceptions.CodeGenException;
1919
import com.yanglb.codegen.exceptions.ParamaCheckException;
2020
import com.yanglb.codegen.model.ParameterModel;
21+
import java.util.Date;
22+
import java.util.HashMap;
2123
import org.apache.commons.cli.CommandLine;
2224
import org.apache.commons.cli.Option;
2325

24-
import java.util.Date;
25-
import java.util.HashMap;
2626

2727
public class BaseGenerator implements IGenerator{
2828
protected ParameterModel parameterModel;

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /