feat: REQ-1650

This commit is contained in:
zuoqinbo 2023-11-29 16:46:28 +08:00
parent 0232279c83
commit 29c75710ca
2 changed files with 5 additions and 38 deletions

View File

@ -21,6 +21,11 @@ public enum ChangeActionType {
* 添加
*/
ADD("add", "添加"),
/**
* 变更
*/
CHANGE("change", "变更"),
/**
* 移除
*/

View File

@ -1,38 +0,0 @@
package cn.axzo.tyr.client.model.res;
import com.alibaba.fastjson.JSON;
/**
* tyr
*
* @author zuoqinbo
* @version V1.0
* @date 2023/11/23 18:43
*/
public class Test {
public static void main(String[] args) {
Test test = new Test();
System.out.println(JSON.toJSON(test));
System.out.println("--------------");
System.out.println(JSON.toJSONString(test));
}
public String xxxMethod1(){
System.out.println("333");
return "";
}
public void setMethod123(){
System.out.println("123");
}
public String getMethod1(){
System.out.println("11");
return "";
}
public String getMethod2(){
System.out.println("22");
return "";
}
}