修改了分页查询订单接口
This commit is contained in:
parent
6f7e297005
commit
397634f2d5
|
@ -7,6 +7,7 @@ import com.cultural.heritage.common.BaseResponse;
|
||||||
import com.cultural.heritage.common.ErrorCode;
|
import com.cultural.heritage.common.ErrorCode;
|
||||||
import com.cultural.heritage.common.ResultUtils;
|
import com.cultural.heritage.common.ResultUtils;
|
||||||
import com.cultural.heritage.exception.BusinessException;
|
import com.cultural.heritage.exception.BusinessException;
|
||||||
|
import com.cultural.heritage.utils.ReflexObjectUtil;
|
||||||
import io.swagger.v3.oas.annotations.tags.Tag;
|
import io.swagger.v3.oas.annotations.tags.Tag;
|
||||||
import lombok.extern.slf4j.Slf4j;
|
import lombok.extern.slf4j.Slf4j;
|
||||||
import org.springframework.web.bind.annotation.PostMapping;
|
import org.springframework.web.bind.annotation.PostMapping;
|
||||||
|
@ -28,7 +29,7 @@ public class WeChatController {
|
||||||
|
|
||||||
|
|
||||||
@PostMapping("/getArticle")
|
@PostMapping("/getArticle")
|
||||||
public BaseResponse<Object> getArticleInfo() {
|
public BaseResponse<Map<String, Object>> getArticleInfo() {
|
||||||
String result1 = null;
|
String result1 = null;
|
||||||
try {
|
try {
|
||||||
result1 = getToken();
|
result1 = getToken();
|
||||||
|
@ -36,7 +37,8 @@ public class WeChatController {
|
||||||
String result2 = getContentList(token.get("access_token").toString());
|
String result2 = getContentList(token.get("access_token").toString());
|
||||||
JSONObject jsonObject = JSON.parseObject(result2);
|
JSONObject jsonObject = JSON.parseObject(result2);
|
||||||
System.out.println(jsonObject);
|
System.out.println(jsonObject);
|
||||||
return ResultUtils.success(jsonObject);
|
Map<String, Object> keyAndValue = ReflexObjectUtil.getKeyAndValue(jsonObject);
|
||||||
|
return ResultUtils.success(keyAndValue);
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
log.info("获取公众号文章信息错误");
|
log.info("获取公众号文章信息错误");
|
||||||
throw new BusinessException(ErrorCode.SYSTEM_ERROR);
|
throw new BusinessException(ErrorCode.SYSTEM_ERROR);
|
||||||
|
|
|
@ -5,10 +5,12 @@ import com.cultural.heritage.model.dto.snapshot.AddressSnapshot;
|
||||||
import com.cultural.heritage.model.dto.snapshot.ContactsSnapshot;
|
import com.cultural.heritage.model.dto.snapshot.ContactsSnapshot;
|
||||||
import com.cultural.heritage.model.dto.snapshot.CouponSnapshot;
|
import com.cultural.heritage.model.dto.snapshot.CouponSnapshot;
|
||||||
import com.cultural.heritage.model.entity.OrderItems;
|
import com.cultural.heritage.model.entity.OrderItems;
|
||||||
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
|
import java.util.Date;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
@Data
|
@Data
|
||||||
|
@ -72,6 +74,13 @@ public class OrderVO implements Serializable {
|
||||||
private List<OrderItems> orderItemList;
|
private List<OrderItems> orderItemList;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 订单创建时间
|
||||||
|
*/
|
||||||
|
@JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
||||||
|
private Date createTime;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
162
src/main/java/com/cultural/heritage/utils/ReflexObjectUtil.java
Normal file
162
src/main/java/com/cultural/heritage/utils/ReflexObjectUtil.java
Normal file
|
@ -0,0 +1,162 @@
|
||||||
|
package com.cultural.heritage.utils;
|
||||||
|
|
||||||
|
import java.lang.reflect.Field;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.HashMap;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 反射处理Bean,得到里面的属性值
|
||||||
|
*
|
||||||
|
* @author liulinsen
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public class ReflexObjectUtil {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 单个对象的所有键值
|
||||||
|
*
|
||||||
|
* 单个对象
|
||||||
|
*
|
||||||
|
* @return Map<String, Object> map 所有 String键 Object值 ex:{pjzyfy=0.00,
|
||||||
|
* xh=01, zzyl=0.00, mc=住院患者压疮发生率, pjypfy=0.00, rs=0, pjzyts=0.00,
|
||||||
|
* czydm=0037, lx=921, zssl=0.00}
|
||||||
|
*/
|
||||||
|
public static Map<String, Object> getKeyAndValue(Object obj) {
|
||||||
|
Map<String, Object> map = new HashMap<String, Object>();
|
||||||
|
// 得到类对象
|
||||||
|
Class userCla = (Class) obj.getClass();
|
||||||
|
/* 得到类中的所有属性集合 */
|
||||||
|
Field[] fs = userCla.getDeclaredFields();
|
||||||
|
for (int i = 0; i < fs.length; i++) {
|
||||||
|
Field f = fs[i];
|
||||||
|
f.setAccessible(true); // 设置些属性是可以访问的
|
||||||
|
Object val = new Object();
|
||||||
|
try {
|
||||||
|
val = f.get(obj);
|
||||||
|
// 得到此属性的值
|
||||||
|
map.put(f.getName(), val);// 设置键值
|
||||||
|
} catch (IllegalArgumentException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
} catch (IllegalAccessException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* String type = f.getType().toString();//得到此属性的类型 if
|
||||||
|
* (type.endsWith("String")) {
|
||||||
|
* System.out.println(f.getType()+"\t是String"); f.set(obj,"12") ;
|
||||||
|
* //给属性设值 }else if(type.endsWith("int") ||
|
||||||
|
* type.endsWith("Integer")){
|
||||||
|
* System.out.println(f.getType()+"\t是int"); f.set(obj,12) ; //给属性设值
|
||||||
|
* }else{ System.out.println(f.getType()+"\t"); }
|
||||||
|
*/
|
||||||
|
|
||||||
|
}
|
||||||
|
System.out.println("单个对象的所有键值==反射==" + map.toString());
|
||||||
|
return map;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 单个对象的某个键的值
|
||||||
|
*
|
||||||
|
* 对象
|
||||||
|
*
|
||||||
|
* @param key
|
||||||
|
* 键
|
||||||
|
*
|
||||||
|
* @return Object 键在对象中所对应得值 没有查到时返回空字符串
|
||||||
|
*/
|
||||||
|
public static Object getValueByKey(Object obj, String key) {
|
||||||
|
// 得到类对象
|
||||||
|
Class userCla = (Class) obj.getClass();
|
||||||
|
/* 得到类中的所有属性集合 */
|
||||||
|
Field[] fs = userCla.getDeclaredFields();
|
||||||
|
for (int i = 0; i < fs.length; i++) {
|
||||||
|
Field f = fs[i];
|
||||||
|
f.setAccessible(true); // 设置些属性是可以访问的
|
||||||
|
try {
|
||||||
|
|
||||||
|
if (f.getName().endsWith(key)) {
|
||||||
|
System.out.println("单个对象的某个键的值==反射==" + f.get(obj));
|
||||||
|
return f.get(obj);
|
||||||
|
}
|
||||||
|
} catch (IllegalArgumentException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
} catch (IllegalAccessException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// 没有查到时返回空字符串
|
||||||
|
return "";
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @param object
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
|
||||||
|
public static List<Map<String, Object>> getKeysAndValues(List<Object> object) {
|
||||||
|
List<Map<String, Object>> list = new ArrayList<Map<String, Object>>();
|
||||||
|
for (Object obj : object) {
|
||||||
|
Class userCla;
|
||||||
|
// 得到类对象
|
||||||
|
userCla = (Class) obj.getClass();
|
||||||
|
/* 得到类中的所有属性集合 */
|
||||||
|
Field[] fs = userCla.getDeclaredFields();
|
||||||
|
Map<String, Object> listChild = new HashMap<String, Object>();
|
||||||
|
for (int i = 0; i < fs.length; i++) {
|
||||||
|
Field f = fs[i];
|
||||||
|
f.setAccessible(true); // 设置些属性是可以访问的
|
||||||
|
Object val = new Object();
|
||||||
|
try {
|
||||||
|
val = f.get(obj);
|
||||||
|
// 得到此属性的值
|
||||||
|
listChild.put(f.getName(), val);// 设置键值
|
||||||
|
} catch (IllegalArgumentException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
} catch (IllegalAccessException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
list.add(listChild);// 将map加入到list集合中
|
||||||
|
}
|
||||||
|
System.out.println("多个(列表)对象的所有键值====" + list.toString());
|
||||||
|
return list;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 多个(列表)对象的某个键的值
|
||||||
|
*
|
||||||
|
* @param object
|
||||||
|
* @param key
|
||||||
|
* @return List<Object> 键在列表中对应的所有值 ex:key为上面方法中的mc字段 那么返回的数据就是: [住院患者压疮发生率,
|
||||||
|
* 新生儿产伤发生率, 阴道分娩产妇产伤发生率, 输血反应发生率, 剖宫产率]
|
||||||
|
*/
|
||||||
|
public static List<Object> getValuesByKey(List<Object> object, String key) {
|
||||||
|
List<Object> list = new ArrayList<Object>();
|
||||||
|
for (Object obj : object) {
|
||||||
|
// 得到类对象
|
||||||
|
Class userCla = (Class) obj.getClass();
|
||||||
|
/* 得到类中的所有属性集合 */
|
||||||
|
Field[] fs = userCla.getDeclaredFields();
|
||||||
|
for (int i = 0; i < fs.length; i++) {
|
||||||
|
Field f = fs[i];
|
||||||
|
f.setAccessible(true); // 设置些属性是可以访问的
|
||||||
|
try {
|
||||||
|
if (f.getName().endsWith(key)) {
|
||||||
|
list.add(f.get(obj));
|
||||||
|
}
|
||||||
|
} catch (IllegalArgumentException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
} catch (IllegalAccessException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
System.out.println("多个(列表)对象的某个键的值列表====" + list.toString());
|
||||||
|
return list;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user