mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-22 03:55:17 +08:00
update 代码格式
This commit is contained in:
@@ -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);
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user