| | |
| | | package com.yssh.service.impl; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | import lombok.Synchronized; |
| | | |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Service; |
| | | import org.springframework.transaction.annotation.Transactional; |
| | | |
| | | import com.yssh.dao.DictRecordMapper; |
| | | import com.yssh.entity.DictRecord; |
| | | import com.yssh.service.IDictRecordService; |
| | | |
| | | import javax.annotation.Resource; |
| | | |
| | | /** |
| | | * 字典记录Service业务层处理 |
| | |
| | | */ |
| | | @Service |
| | | public class DictRecordServiceImpl implements IDictRecordService { |
| | | |
| | | @Autowired |
| | | @Resource |
| | | private DictRecordMapper dictRecordMapper; |
| | | |
| | | /** |
| | |
| | | return dictRecordMapper.selectDictRecordList(dictRecord); |
| | | } |
| | | |
| | | @Override |
| | | public DictRecord selectByCreateTime(Long createTime) { |
| | | return dictRecordMapper.selectByCreateTime(createTime); |
| | | } |
| | | |
| | | /** |
| | | * 新增字典记录 |
| | | * |