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,29 @@
package com.jsowell.pile.service;
import com.jsowell.pile.domain.AdapayUnsplitRecord;
import java.util.List;
public interface AdapayUnsplitRecordService{
int deleteByPrimaryKey(Integer id);
int insert(AdapayUnsplitRecord record);
int insertOrUpdate(AdapayUnsplitRecord record);
int insertOrUpdateSelective(AdapayUnsplitRecord record);
int insertSelective(AdapayUnsplitRecord record);
AdapayUnsplitRecord selectByPrimaryKey(Integer id);
int updateByPrimaryKeySelective(AdapayUnsplitRecord record);
int updateByPrimaryKey(AdapayUnsplitRecord record);
int updateBatch(List<AdapayUnsplitRecord> list);
int updateBatchSelective(List<AdapayUnsplitRecord> list);
int batchInsert(List<AdapayUnsplitRecord> list);
}