随笔分类 - Java工具类
摘要:public class BeanCopyUtils { private BeanCopyUtils() { } public static <V> V copyBean(Object source, Class<V> clazz) { //创建目标对象 V result = null; try {
阅读全文
摘要:统一响应类 @JsonInclude(JsonInclude.Include.NON_NULL) public class ResponseResult<T> implements Serializable { private Integer code; private String msg; pr
阅读全文