更改目录结构

This commit is contained in:
liuyingfang
2024-03-02 18:31:44 +08:00
parent 8f7acca8e6
commit 0a70a66807
603 changed files with 2256 additions and 6114 deletions

View File

@@ -1,4 +1,4 @@
package me.zhengjie.utils;
package cn.ysk.cashier.utils;
import org.junit.jupiter.api.Test;

View File

@@ -1,8 +1,8 @@
package me.zhengjie.utils;
package cn.ysk.cashier.utils;
import org.junit.jupiter.api.Test;
import static me.zhengjie.utils.EncryptUtils.*;
import static cn.ysk.cashier.utils.EncryptUtils.*;
import static org.junit.jupiter.api.Assertions.assertEquals;
public class EncryptUtilsTest {

View File

@@ -1,9 +1,9 @@
package me.zhengjie.utils;
package cn.ysk.cashier.utils;
import org.junit.jupiter.api.Test;
import org.springframework.mock.web.MockMultipartFile;
import static me.zhengjie.utils.FileUtil.*;
import static cn.ysk.cashier.utils.FileUtil.*;
import static org.junit.jupiter.api.Assertions.assertEquals;
public class FileUtilTest {

View File

@@ -1,4 +1,4 @@
package me.zhengjie.utils;
package cn.ysk.cashier.utils;
import org.junit.jupiter.api.Test;
import org.springframework.mock.web.MockHttpServletRequest;
@@ -6,11 +6,11 @@ import org.springframework.mock.web.MockHttpServletRequest;
import java.text.SimpleDateFormat;
import java.util.Date;
import static me.zhengjie.utils.StringUtils.getIp;
import static me.zhengjie.utils.StringUtils.getWeekDay;
import static me.zhengjie.utils.StringUtils.toCamelCase;
import static me.zhengjie.utils.StringUtils.toCapitalizeCamelCase;
import static me.zhengjie.utils.StringUtils.toUnderScoreCase;
import static cn.ysk.cashier.utils.StringUtils.getIp;
import static cn.ysk.cashier.utils.StringUtils.getWeekDay;
import static cn.ysk.cashier.utils.StringUtils.toCamelCase;
import static cn.ysk.cashier.utils.StringUtils.toCapitalizeCamelCase;
import static cn.ysk.cashier.utils.StringUtils.toUnderScoreCase;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertNull;