| | |
| | | package com.sandu.ximon.admin.service; |
| | | |
| | | import com.baomidou.mybatisplus.core.toolkit.Wrappers; |
| | | import com.sandu.common.service.impl.BaseServiceImpl; |
| | | import com.sandu.ximon.dao.domain.LampCount; |
| | | import com.sandu.ximon.dao.mapper.LampCountMapper; |
| | | import lombok.Data; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | /** |
| | | * 灯杆计数使用 |
| | | */ |
| | | @Service |
| | | @Data |
| | | public class LampCountService extends BaseServiceImpl<LampCountMapper, LampCount> { |
| | | |
| | | /* public LampCount findCount(){ |
| | | LampCount one = getOne(Wrappers.lambdaQuery(LampCount.class)); |
| | | return one; |
| | | }*/ |
| | | } |