| | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springblade.modules.property.dto.PropertyChargeRecordDTO; |
| | | import org.springblade.modules.property.entity.PropertyCharge; |
| | | import org.springblade.modules.property.entity.PropertyChargeRecord; |
| | | import org.springblade.modules.property.vo.PropertyChargeRecordVO; |
| | |
| | | |
| | | |
| | | List<PropertyChargeRecordVO> getPage(IPage<PropertyChargeRecordVO> page, @Param("vo") PropertyChargeRecordVO vo); |
| | | |
| | | |
| | | /** |
| | | * 查询缴费记录表 |
| | | * |
| | | * @param id 缴费记录表ID |
| | | * @return 缴费记录表 |
| | | */ |
| | | public PropertyChargeRecordDTO selectPropertyChargeRecordById(Long id); |
| | | |
| | | /** |
| | | * 查询缴费记录表列表 |
| | | * |
| | | * @param propertyChargeRecordDTO 缴费记录表 |
| | | * @return 缴费记录表集合 |
| | | */ |
| | | public List<PropertyChargeRecordDTO> selectPropertyChargeRecordList(PropertyChargeRecordDTO propertyChargeRecordDTO); |
| | | } |