| | |
| | | package com.yuanchu.mom.service; |
| | | |
| | | import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.yuanchu.mom.dto.Custom; |
| | | import com.yuanchu.mom.dto.UserPageDto; |
| | | import com.yuanchu.mom.pojo.Power; |
| | | import com.yuanchu.mom.pojo.Custom; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | |
| | | |
| | | Map<String, Object> selectCustomPageList(IPage<Custom> page, Custom custom); |
| | | |
| | | int delCustomById(Integer id); |
| | | int delCustomById(Long id); |
| | | |
| | | int addCustom(Custom custom); |
| | | |
| | | int upCustom(Custom custom); |
| | | |
| | | List<Custom> selectCustomEnum(); |
| | | |
| | | Custom getCustomId(String company); |
| | | } |