| | |
| | | import org.apache.commons.lang3.StringUtils; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Service; |
| | | import org.springframework.transaction.annotation.Transactional; |
| | | |
| | | import javax.annotation.Resource; |
| | | import java.util.List; |
| | |
| | | QueryWrapper<StScheduleModelEntity> wrapper = new QueryWrapper<>(); |
| | | return stScheduleModelDao.selectCount(wrapper); |
| | | } |
| | | |
| | | @Override |
| | | public StScheduleModelEntity getByModelCode(String modelCode) { |
| | | return stScheduleModelDao.selectOne("model_code", modelCode); |
| | | } |
| | | } |