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.SysGroup;
import net.wicp.tams.cas.bean.models.SysGroupExample;
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 SysGroupMapper {
/**
* This method was generated by MyBatis Generator. This method corresponds to the database table sys_group
*
*/
long countByExample(SysGroupExample example);
/**
* This method was generated by MyBatis Generator. This method corresponds to the database table sys_group
*
*/
int deleteByExample(SysGroupExample example);
/**
* This method was generated by MyBatis Generator. This method corresponds to the database table sys_group
*
*/
@Delete({ "delete from sys_group", "where id = #{id,jdbcType=BIGINT}" })
int deleteByPrimaryKey(Long id);
/**
* This method was generated by MyBatis Generator. This method corresponds to the database table sys_group
*
*/
@Insert({ "insert into sys_group (id, group_name, ", "org_id, tenant_id)",
"values (#{id,jdbcType=BIGINT}, #{groupName,jdbcType=VARCHAR}, ",
"#{orgId,jdbcType=BIGINT}, #{tenantId,jdbcType=BIGINT})" })
int insert(SysGroup record);
/**
* This method was generated by MyBatis Generator. This method corresponds to the database table sys_group
*
*/
int insertSelective(SysGroup record);
/**
* This method was generated by MyBatis Generator. This method corresponds to the database table sys_group
*
*/
List selectByExample(SysGroupExample example);
/**
* This method was generated by MyBatis Generator. This method corresponds to the database table sys_group
*
*/
@Select({ "select", "id, group_name, org_id, tenant_id", "from sys_group", "where id = #{id,jdbcType=BIGINT}" })
@ResultMap("net.wicp.tams.cas.dao.SysGroupMapper.BaseResultMap")
SysGroup selectByPrimaryKey(Long id);
/**
* This method was generated by MyBatis Generator. This method corresponds to the database table sys_group
*
*/
int updateByExampleSelective(@Param("record") SysGroup record, @Param("example") SysGroupExample example);
/**
* This method was generated by MyBatis Generator. This method corresponds to the database table sys_group
*
*/
int updateByExample(@Param("record") SysGroup record, @Param("example") SysGroupExample example);
/**
* This method was generated by MyBatis Generator. This method corresponds to the database table sys_group
*
*/
int updateByPrimaryKeySelective(SysGroup record);
/**
* This method was generated by MyBatis Generator. This method corresponds to the database table sys_group
*
*/
@Update({ "update sys_group", "set group_name = #{groupName,jdbcType=VARCHAR},",
"org_id = #{orgId,jdbcType=BIGINT},", "tenant_id = #{tenantId,jdbcType=BIGINT}",
"where id = #{id,jdbcType=BIGINT}" })
int updateByPrimaryKey(SysGroup record);
}