All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.foxtech.common.entity.service.usermenu.UserMenuMaker Maven / Gradle / Ivy

package cn.foxtech.common.entity.service.usermenu;

import cn.foxtech.common.entity.entity.BaseEntity;
import cn.foxtech.common.entity.entity.UserMenuEntity;
import cn.foxtech.common.entity.entity.UserMenuPo;
import cn.foxtech.common.utils.json.JsonUtils;

import java.util.ArrayList;
import java.util.List;


public class UserMenuMaker {
    /**
     * PO转Entity
     *
     * @param poList PO列表
     * @return 实体列表
     */
    public static List makePoList2EntityList(List poList) {
        List resultList = new ArrayList<>();
        for (BaseEntity entity : poList) {
            UserMenuPo po = (UserMenuPo) entity;


            UserMenuEntity result = UserMenuMaker.makePo2Entity(po);
            resultList.add(result);
        }

        return resultList;
    }

    public static UserMenuPo makeEntity2Po(UserMenuEntity entity) {
        UserMenuPo result = new UserMenuPo();
        result.bind(entity);


        result.setMenu(JsonUtils.buildJsonWithoutException(entity.getParams()));
        return result;
    }

    public static UserMenuEntity makePo2Entity(UserMenuPo entity) {
        UserMenuEntity result = new UserMenuEntity();
        result.bind(entity);


        try {
            List objList = JsonUtils.buildObject(entity.getMenu(), List.class);
            if (objList != null) {
                result.getParams().clear();
                result.getParams().addAll(objList);
            } else {
                System.out.println("触发器配置参数转换Json对象失败:" + entity.getMenu());
            }
        } catch (Exception e) {
            System.out.println("触发器配置参数转换Json对象失败:" + entity.getMenu());
            e.printStackTrace();
        }

        return result;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy