交班问题修复
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
package com.czg.account.dto;
|
||||
|
||||
import com.alibaba.fastjson2.JSON;
|
||||
import com.alibaba.fastjson2.annotation.JSONField;
|
||||
import com.czg.account.vo.HandoverCategoryListVo;
|
||||
import com.czg.account.vo.HandoverProductListVo;
|
||||
@@ -117,9 +118,17 @@ public class HandoverRecordDTO implements Serializable {
|
||||
/**
|
||||
* 分类数据
|
||||
*/
|
||||
List<HandoverCategoryListVo> categoryDataList;
|
||||
private List<HandoverCategoryListVo> categoryDataList;
|
||||
/**
|
||||
* 商品数据
|
||||
*/
|
||||
List<HandoverProductListVo> productDatalist;
|
||||
private List<HandoverProductListVo> productDataList;
|
||||
|
||||
public List<HandoverCategoryListVo> getCategoryDataList() {
|
||||
return JSON.parseArray(categoryData, HandoverCategoryListVo.class);
|
||||
}
|
||||
|
||||
public List<HandoverProductListVo> getProductDataList() {
|
||||
return JSON.parseArray(productData, HandoverProductListVo.class);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user