package com.chinaztt.mes.production.mapper; import com.alibaba.fastjson.JSONObject; import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.chinaztt.mes.production.dto.FeedingDTO; import com.chinaztt.mes.production.entity.Feeding; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import java.util.List; /** * 投料登记 * * @author cxf * @date 2020-11-12 10:48:37 */ @Mapper public interface FeedingMapper extends BaseMapper { /** * 查询投料信息 * * @param gen * @return */ List getFeedingByParam(@Param("ew") QueryWrapper gen); /** * PDA查询所有 * * @param gen * @return */ List pdaList(@Param("ew") QueryWrapper gen); }