rename package

com.rebuild.server.business.datas > com.rebuild.server.business.dataio
This commit is contained in:
devezhao 2019-02-28 17:11:00 +08:00
parent 969f54fad0
commit 3a7d93f5c7
7 changed files with 12 additions and 9 deletions

View file

@ -16,7 +16,7 @@ You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package com.rebuild.server.business.datas;
package com.rebuild.server.business.dataio;
import java.io.Closeable;
import java.io.File;

View file

@ -16,7 +16,7 @@ You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package com.rebuild.server.business.datas;
package com.rebuild.server.business.dataio;
import java.util.Date;
import java.util.HashMap;

View file

@ -16,7 +16,7 @@ You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package com.rebuild.server.business.datas;
package com.rebuild.server.business.dataio;
import java.io.File;
import java.net.URISyntaxException;

View file

@ -16,7 +16,7 @@ You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package com.rebuild.server.business.datas;
package com.rebuild.server.business.dataio;
import java.io.IOException;
import java.lang.reflect.Type;

View file

@ -36,9 +36,9 @@ import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONObject;
import com.alibaba.fastjson.serializer.SerializeConfig;
import com.alibaba.fastjson.serializer.ToStringSerializer;
import com.rebuild.server.business.datas.DataFileParser;
import com.rebuild.server.business.datas.DataImporter;
import com.rebuild.server.business.datas.ImportEnter;
import com.rebuild.server.business.dataio.DataFileParser;
import com.rebuild.server.business.dataio.DataImporter;
import com.rebuild.server.business.dataio.ImportEnter;
import com.rebuild.server.helper.SystemConfig;
import com.rebuild.server.helper.task.BulkTask;
import com.rebuild.server.helper.task.BulkTaskExecutor;

View file

@ -16,7 +16,7 @@ You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package com.rebuild.server.business.datas;
package com.rebuild.server.business.dataio;
import java.io.File;
import java.net.URISyntaxException;
@ -27,6 +27,7 @@ import org.apache.commons.lang.StringUtils;
import org.junit.Test;
import com.rebuild.server.TestSupport;
import com.rebuild.server.business.dataio.DataFileParser;
import cn.devezhao.commons.excel.Cell;

View file

@ -16,13 +16,15 @@ You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package com.rebuild.server.business.datas;
package com.rebuild.server.business.dataio;
import org.junit.Test;
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONObject;
import com.rebuild.server.TestSupport;
import com.rebuild.server.business.dataio.DataImporter;
import com.rebuild.server.business.dataio.ImportEnter;
import com.rebuild.server.service.bizz.UserService;
/**