linwe
2024-08-09 8b7258c9427882bb1798f1502eaa35184c6e374e
src/main/java/org/springblade/modules/property/mapper/PropertyChargeRecordMapper.java
@@ -19,6 +19,7 @@
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;
@@ -36,4 +37,21 @@
   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);
}