| | |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.jeecg.modules.andon.dto.AndonButtonDTO; |
| | | import org.jeecg.modules.andon.entity.AndonButtonConfig; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @Description: 安灯按钮配置 |
| | |
| | | */ |
| | | public interface AndonButtonConfigMapper extends BaseMapper<AndonButtonConfig> { |
| | | AndonButtonConfig getAndonButtonById(@Param("id") String id); |
| | | /** |
| | | * 安灯按钮列表 |
| | | * @param factoryId |
| | | * @return |
| | | */ |
| | | List<AndonButtonDTO> queryUserAndonButtonList(String factoryId); |
| | | } |