You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
920 B
Java
30 lines
920 B
Java
|
1 year ago
|
package com.sztzjy.linkCommerce.mapper;
|
||
|
|
|
||
|
|
import com.sztzjy.linkCommerce.entity.JzhyfxData;
|
||
|
|
import com.sztzjy.linkCommerce.entity.JzhyfxDataExample;
|
||
|
|
import java.util.List;
|
||
|
|
import org.apache.ibatis.annotations.Param;
|
||
|
|
|
||
|
|
public interface JzhyfxDataMapper {
|
||
|
|
long countByExample(JzhyfxDataExample example);
|
||
|
|
|
||
|
|
int deleteByExample(JzhyfxDataExample example);
|
||
|
|
|
||
|
|
int deleteByPrimaryKey(String id);
|
||
|
|
|
||
|
|
int insert(JzhyfxData record);
|
||
|
|
|
||
|
|
int insertSelective(JzhyfxData record);
|
||
|
|
|
||
|
|
List<JzhyfxData> selectByExample(JzhyfxDataExample example);
|
||
|
|
|
||
|
|
JzhyfxData selectByPrimaryKey(String id);
|
||
|
|
|
||
|
|
int updateByExampleSelective(@Param("record") JzhyfxData record, @Param("example") JzhyfxDataExample example);
|
||
|
|
|
||
|
|
int updateByExample(@Param("record") JzhyfxData record, @Param("example") JzhyfxDataExample example);
|
||
|
|
|
||
|
|
int updateByPrimaryKeySelective(JzhyfxData record);
|
||
|
|
|
||
|
|
int updateByPrimaryKey(JzhyfxData record);
|
||
|
|
}
|