mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-05-05 18:40:14 +08:00
update 代码格式
This commit is contained in:
@@ -0,0 +1,72 @@
|
||||
package com.jsowell.web.controller.pile;
|
||||
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
|
||||
import com.jsowell.pile.domain.AdapayUnsplitRecord;
|
||||
import java.util.List;
|
||||
import com.jsowell.pile.mapper.AdapayUnsplitRecordMapper;
|
||||
import com.jsowell.pile.service.AdapayUnsplitRecordService;
|
||||
@Service
|
||||
public class AdapayUnsplitRecordServiceImpl implements AdapayUnsplitRecordService{
|
||||
|
||||
@Autowired
|
||||
private AdapayUnsplitRecordMapper adapayUnsplitRecordMapper;
|
||||
|
||||
@Override
|
||||
public int deleteByPrimaryKey(Integer id) {
|
||||
return adapayUnsplitRecordMapper.deleteByPrimaryKey(id);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int insert(AdapayUnsplitRecord record) {
|
||||
return adapayUnsplitRecordMapper.insert(record);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int insertOrUpdate(AdapayUnsplitRecord record) {
|
||||
return adapayUnsplitRecordMapper.insertOrUpdate(record);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int insertOrUpdateSelective(AdapayUnsplitRecord record) {
|
||||
return adapayUnsplitRecordMapper.insertOrUpdateSelective(record);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int insertSelective(AdapayUnsplitRecord record) {
|
||||
return adapayUnsplitRecordMapper.insertSelective(record);
|
||||
}
|
||||
|
||||
@Override
|
||||
public AdapayUnsplitRecord selectByPrimaryKey(Integer id) {
|
||||
return adapayUnsplitRecordMapper.selectByPrimaryKey(id);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int updateByPrimaryKeySelective(AdapayUnsplitRecord record) {
|
||||
return adapayUnsplitRecordMapper.updateByPrimaryKeySelective(record);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int updateByPrimaryKey(AdapayUnsplitRecord record) {
|
||||
return adapayUnsplitRecordMapper.updateByPrimaryKey(record);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int updateBatch(List<AdapayUnsplitRecord> list) {
|
||||
return adapayUnsplitRecordMapper.updateBatch(list);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int updateBatchSelective(List<AdapayUnsplitRecord> list) {
|
||||
return adapayUnsplitRecordMapper.updateBatchSelective(list);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int batchInsert(List<AdapayUnsplitRecord> list) {
|
||||
return adapayUnsplitRecordMapper.batchInsert(list);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user