Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
package net.wicp.tams.cas.dao;
import java.util.List;
import net.wicp.tams.cas.bean.models.SysPosition;
import net.wicp.tams.cas.bean.models.SysPositionExample;
import org.apache.ibatis.annotations.Delete;
import org.apache.ibatis.annotations.Insert;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.annotations.ResultMap;
import org.apache.ibatis.annotations.Select;
import org.apache.ibatis.annotations.Update;
public interface SysPositionMapper {
/**
* This method was generated by MyBatis Generator. This method corresponds to the database table sys_position
*
*/
long countByExample(SysPositionExample example);
/**
* This method was generated by MyBatis Generator. This method corresponds to the database table sys_position
*
*/
int deleteByExample(SysPositionExample example);
/**
* This method was generated by MyBatis Generator. This method corresponds to the database table sys_position
*
*/
@Delete({ "delete from sys_position", "where id = #{id,jdbcType=BIGINT}" })
int deleteByPrimaryKey(Long id);
/**
* This method was generated by MyBatis Generator. This method corresponds to the database table sys_position
*
*/
@Insert({ "insert into sys_position (id, position_name, ", "org_id, tenant_id)",
"values (#{id,jdbcType=BIGINT}, #{positionName,jdbcType=VARCHAR}, ",
"#{orgId,jdbcType=BIGINT}, #{tenantId,jdbcType=BIGINT})" })
int insert(SysPosition record);
/**
* This method was generated by MyBatis Generator. This method corresponds to the database table sys_position
*
*/
int insertSelective(SysPosition record);
/**
* This method was generated by MyBatis Generator. This method corresponds to the database table sys_position
*
*/
List selectByExample(SysPositionExample example);
/**
* This method was generated by MyBatis Generator. This method corresponds to the database table sys_position
*
*/
@Select({ "select", "id, position_name, org_id, tenant_id", "from sys_position",
"where id = #{id,jdbcType=BIGINT}" })
@ResultMap("net.wicp.tams.cas.dao.SysPositionMapper.BaseResultMap")
SysPosition selectByPrimaryKey(Long id);
/**
* This method was generated by MyBatis Generator. This method corresponds to the database table sys_position
*
*/
int updateByExampleSelective(@Param("record") SysPosition record, @Param("example") SysPositionExample example);
/**
* This method was generated by MyBatis Generator. This method corresponds to the database table sys_position
*
*/
int updateByExample(@Param("record") SysPosition record, @Param("example") SysPositionExample example);
/**
* This method was generated by MyBatis Generator. This method corresponds to the database table sys_position
*
*/
int updateByPrimaryKeySelective(SysPosition record);
/**
* This method was generated by MyBatis Generator. This method corresponds to the database table sys_position
*
*/
@Update({ "update sys_position", "set position_name = #{positionName,jdbcType=VARCHAR},",
"org_id = #{orgId,jdbcType=BIGINT},", "tenant_id = #{tenantId,jdbcType=BIGINT}",
"where id = #{id,jdbcType=BIGINT}" })
int updateByPrimaryKey(SysPosition record);
}