| | |
| | | |
| | | import com.dy.common.webUtil.QueryResultVo; |
| | | import com.dy.pmsGlobal.daoPlt.PltStationMapper; |
| | | import com.dy.pmsGlobal.pojoPlt.PltProduct; |
| | | import com.dy.pmsGlobal.pojoPlt.PltStation; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.apache.dubbo.common.utils.PojoUtils; |
| | |
| | | return rsVo ; |
| | | } |
| | | |
| | | @Transactional |
| | | public int disabled(Long id, Boolean disabled) { |
| | | PltStation station = new PltStation(); |
| | | station.setId(id); |
| | | station.setDisabled(disabled); |
| | | return dao.updateByPrimaryKeySelective(station); |
| | | } |
| | | |
| | | public List<PltStation> selectAll() { |
| | | return dao.selectAll(); |
| | | } |
| | | } |
| | | |