| | |
| | | package com.ruoyi.system.service.impl; |
| | | |
| | | import com.ruoyi.common.core.domain.AjaxResult; |
| | | import com.ruoyi.common.core.redis.RedisCache; |
| | | import com.ruoyi.system.mapper.TBillMapper; |
| | | import com.ruoyi.system.model.TBill; |
| | | import com.ruoyi.system.query.TBillQuery; |
| | | import com.ruoyi.system.service.TBillService; |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import io.jsonwebtoken.lang.Assert; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | /** |
| | |
| | | @Service |
| | | public class TBillServiceImpl extends ServiceImpl<TBillMapper, TBill> implements TBillService { |
| | | |
| | | @Autowired |
| | | RedisCache redisCache; |
| | | |
| | | public AjaxResult queryPage(TBillQuery query){ |
| | | return AjaxResult.success(); |
| | | } |
| | | |
| | | |
| | | |
| | | /** |
| | | * 传的金额 |
| | | * @param tBill |
| | | * @return |
| | | */ |
| | | public Boolean checkAndUpdateBill(TBill tBill){ |
| | | return true; |
| | | } |
| | | |
| | | |
| | | |
| | | |
| | | } |