/* * Copyright 2010 The YAPULAN Software Foundation * * Licensed under the YAPULAN License, Version 2.0 (the "License"); */ package com.miniframe.system.model.dao; import com.miniframe.system.MiniserviceBaseDao; import com.miniframe.system.model.SysUser; import com.miniframe.system.model.SysUserSQLBuilder; import java.sql.SQLException; import java.util.List; public interface SysUserDAO extends MiniserviceBaseDao { /** * 获取记录行数 * @generated */ public int countByExample(SysUserSQLBuilder example) throws SQLException; /** * 条件删除 * @generated */ public int deleteByExample(SysUserSQLBuilder example) throws SQLException; /** * 根据主键删除 * @generated */ public int deleteByPrimaryKey(String userid) throws SQLException; /** * 插入,所有字段 * @generated */ public void insert(SysUser record) throws SQLException; /** * 动态插入,忽略空字段 * @generated */ public void insertSelective(SysUser record) throws SQLException; /** * 条件查询 * @generated */ public List selectByExample(SysUserSQLBuilder example) throws SQLException; /** * 根据主键查询 * @generated */ public SysUser selectByPrimaryKey(String userid) throws SQLException; /** * 动态修改,不包含空字段 * @generated */ public int updateByExampleSelective(SysUser record, SysUserSQLBuilder example) throws SQLException; /** * 条件修改 * @generated */ public int updateByExample(SysUser record, SysUserSQLBuilder example) throws SQLException; /** * 动态根据主键修改,为空字段不修改 * @generated */ public int updateByPrimaryKeySelective(SysUser record) throws SQLException; /** * 根据主键修改 * @generated */ public int updateByPrimaryKey(SysUser record) throws SQLException; }