DKLInfoServiceImpl.java
539 Bytes
package com.bsth.service.impl;
import com.bsth.entity.DKLInfo;
import com.bsth.repository.DKLInfoRepository;
import com.bsth.service.DKLInfoService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@Service
public class DKLInfoServiceImpl extends BaseServiceImpl<DKLInfo, Integer> implements DKLInfoService {
@Autowired
DKLInfoRepository DKLInfoRepository;
public int updatedkl(Integer id){
DKLInfoRepository.update(id,"1");
return 0;
}
}