mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-25 13:35:15 +08:00
update 预约启动
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
package com.jsowell.pile.mapper;
|
||||
|
||||
import com.jsowell.pile.domain.PersonalChargingRecord;
|
||||
import java.util.List;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
public interface PersonalChargingRecordMapper {
|
||||
int deleteByPrimaryKey(Integer id);
|
||||
|
||||
int insert(PersonalChargingRecord record);
|
||||
|
||||
int insertOrUpdate(PersonalChargingRecord record);
|
||||
|
||||
int insertOrUpdateSelective(PersonalChargingRecord record);
|
||||
|
||||
int insertSelective(PersonalChargingRecord record);
|
||||
|
||||
PersonalChargingRecord selectByPrimaryKey(Integer id);
|
||||
|
||||
int updateByPrimaryKeySelective(PersonalChargingRecord record);
|
||||
|
||||
int updateByPrimaryKey(PersonalChargingRecord record);
|
||||
|
||||
int updateBatch(List<PersonalChargingRecord> list);
|
||||
|
||||
int updateBatchSelective(List<PersonalChargingRecord> list);
|
||||
|
||||
int batchInsert(@Param("list") List<PersonalChargingRecord> list);
|
||||
}
|
||||
Reference in New Issue
Block a user