ganzi-api/inventory-dao/src/main/java/com/rzyc/mapper/SysLogOptMapper.java
2022-09-16 15:07:17 +08:00

41 lines
1.3 KiB
Java

package com.rzyc.mapper;
import com.rzyc.model.SysLogOpt;
import com.rzyc.model.SysLogOptExample;
import com.rzyc.model.SysLogOptWithBLOBs;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
import java.util.List;
@Repository
public interface SysLogOptMapper {
long countByExample(SysLogOptExample example);
int deleteByExample(SysLogOptExample example);
int deleteByPrimaryKey(String syslogoptid);
int insert(SysLogOptWithBLOBs record);
int insertSelective(SysLogOptWithBLOBs record);
List<SysLogOptWithBLOBs> selectByExampleWithBLOBs(SysLogOptExample example);
List<SysLogOpt> selectByExample(SysLogOptExample example);
SysLogOptWithBLOBs selectByPrimaryKey(String syslogoptid);
int updateByExampleSelective(@Param("record") SysLogOptWithBLOBs record, @Param("example") SysLogOptExample example);
int updateByExampleWithBLOBs(@Param("record") SysLogOptWithBLOBs record, @Param("example") SysLogOptExample example);
int updateByExample(@Param("record") SysLogOpt record, @Param("example") SysLogOptExample example);
int updateByPrimaryKeySelective(SysLogOptWithBLOBs record);
int updateByPrimaryKeyWithBLOBs(SysLogOptWithBLOBs record);
int updateByPrimaryKey(SysLogOpt record);
}