Initial commit

This commit is contained in:
wangcongtao
2019-12-23 15:08:04 +08:00
commit 80cc1248b2
210 changed files with 17746 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
package com.mogo.commons.data;
import java.io.Serializable;
/**
* Created by congtaowang on 2019/1/7.
*/
public class BaseData implements Serializable, Cloneable {
public int code = -1;
public String msg;
}