| | |
| | | import com.sinata.system.domain.dto.MwProtectionEquipmentDTO; |
| | | import com.sinata.system.domain.dto.MwProtectionEquipmentRecordDTO; |
| | | import com.sinata.system.domain.query.MwProtectionEquipmentQuery; |
| | | import com.sinata.system.domain.query.MwProtectionEquipmentRecordQuery; |
| | | import com.sinata.system.domain.vo.MwProtectionEquipmentRecordVO; |
| | | import com.sinata.system.domain.vo.MwProtectionEquipmentVO; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | * @param dto |
| | | */ |
| | | void addStock(MwProtectionEquipmentRecordDTO dto); |
| | | |
| | | /** |
| | | * 增减记录分页列表 |
| | | * |
| | | * @param query |
| | | * @return |
| | | */ |
| | | PageDTO<MwProtectionEquipmentRecordVO> recordPage(MwProtectionEquipmentRecordQuery query); |
| | | |
| | | /** |
| | | * 删除 |
| | | * |
| | | * @param id |
| | | * @return |
| | | */ |
| | | void delete(Long id); |
| | | |
| | | /** |
| | | * 防护器具列表 |
| | | * |
| | | * @return |
| | | */ |
| | | List<MwProtectionEquipmentVO> queryList(); |
| | | } |