update 代码格式

This commit is contained in:
Guoqs
2025-11-14 14:49:40 +08:00
parent 8879e0d2fb
commit 2b33a7a845
5 changed files with 934 additions and 0 deletions

View File

@@ -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);
}
}