All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.wicp.tams.cas.dao.SysPositionMapper Maven / Gradle / Ivy

There is a newer version: 1.3.2
Show newest version
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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy