12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- package com.sooka.system.service.impl;
- import java.util.List;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.stereotype.Service;
- import com.sooka.system.mapper.TgjjZcxxMapper;
- import com.sooka.system.domain.TgjjZcxx;
- import com.sooka.system.service.ITgjjZcxxService;
- import com.sooka.common.core.text.Convert;
- /**
- * 【请填写功能名称】Service业务层处理
- *
- * @author lei
- * @date 2021-11-15
- */
- @Service
- public class TgjjZcxxServiceImpl implements ITgjjZcxxService
- {
- @Autowired
- private TgjjZcxxMapper tgjjZcxxMapper;
- /**
- * 查询【请填写功能名称】
- *
- * @param ID 【请填写功能名称】ID
- * @return 【请填写功能名称】
- */
- @Override
- public TgjjZcxx selectTgjjZcxxById(Long ID)
- {
- return tgjjZcxxMapper.selectTgjjZcxxById(ID);
- }
- /**
- * 查询【请填写功能名称】列表
- *
- * @param tgjjZcxx 【请填写功能名称】
- * @return 【请填写功能名称】
- */
- @Override
- public List<TgjjZcxx> selectTgjjZcxxList(TgjjZcxx tgjjZcxx)
- {
- return tgjjZcxxMapper.selectTgjjZcxxList(tgjjZcxx);
- }
- /**
- * 新增【请填写功能名称】
- *
- * @param tgjjZcxx 【请填写功能名称】
- * @return 结果
- */
- @Override
- public int insertTgjjZcxx(TgjjZcxx tgjjZcxx)
- {
- return tgjjZcxxMapper.insertTgjjZcxx(tgjjZcxx);
- }
- /**
- * 修改【请填写功能名称】
- *
- * @param tgjjZcxx 【请填写功能名称】
- * @return 结果
- */
- @Override
- public int updateTgjjZcxx(TgjjZcxx tgjjZcxx)
- {
- return tgjjZcxxMapper.updateTgjjZcxx(tgjjZcxx);
- }
- /**
- * 删除【请填写功能名称】对象
- *
- * @param ids 需要删除的数据ID
- * @return 结果
- */
- @Override
- public int deleteTgjjZcxxByIds(String ids)
- {
- return tgjjZcxxMapper.deleteTgjjZcxxByIds(Convert.toStrArray(ids));
- }
- /**
- * 删除【请填写功能名称】信息
- *
- * @param ID 【请填写功能名称】ID
- * @return 结果
- */
- @Override
- public int deleteTgjjZcxxById(Long ID)
- {
- return tgjjZcxxMapper.deleteTgjjZcxxById(ID);
- }
- }
|