| | |
| | | import com.ruoyi.system.domain.TbBasicData; |
| | | import com.ruoyi.system.query.CurrentFieldsQuery; |
| | | import com.ruoyi.system.vo.CurrentFieldsVO; |
| | | import com.ruoyi.system.vo.FieldAndScoreDataVO; |
| | | import com.ruoyi.system.vo.TransferPaymentScaleVO; |
| | | import java.util.List; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | /** |
| | |
| | | */ |
| | | public interface TbBasicDataMapper extends BaseMapper<TbBasicData> { |
| | | |
| | | Page<CurrentFieldsVO> fieldsStatics(@Param("page") Page<CurrentFieldsVO> page, @Param("dto") CurrentFieldsQuery dto); |
| | | Page<CurrentFieldsVO> fieldsStatics(@Param("page") Page<CurrentFieldsVO> page, |
| | | @Param("dto") CurrentFieldsQuery dto); |
| | | |
| | | Page<TransferPaymentScaleVO> transferPaymentScalePage( |
| | | @Param("page") Page<TransferPaymentScaleVO> page, |
| | | @Param("quarter") String quarter); |
| | | |
| | | List<FieldAndScoreDataVO> selectBasicDataFieldsConfig(@Param("areaCode") String areaCode, |
| | | @Param("nowQuarter") String nowQuarter); |
| | | } |