2024-04-11 12:56:00 +08:00

46 lines
1.4 KiB
Java

package com.sky.mapper;
import com.sky.annotation.AutoFill;
import com.sky.dto.EmployeePageQueryDTO;
import com.sky.dto.StartOrStopDTO;
import com.sky.entity.Employee;
import com.sky.enumeration.OperationType;
import org.apache.ibatis.annotations.Insert;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Select;
import org.apache.ibatis.annotations.Update;
import java.util.List;
@Mapper
public interface EmployeeMapper {
/**
* 根据用户名查询员工
* @param username
* @return
*/
@Select("select * from employee where username = #{username}")
Employee getByUsername(String username);
/**
* 新增员工
* @param employee
*/
@Insert("insert into employee (name, username, password, phone, sex, id_number, create_time, update_time, create_user, update_user,status) " +
"values " +
"(#{name},#{username},#{password},#{phone},#{sex},#{idNumber},#{createTime},#{updateTime},#{createUser},#{updateUser},#{status})")
@AutoFill(OperationType.INSERT)
void save(Employee employee);
/**
* 分页条件查询
* @return
*/
List<Employee> list(EmployeePageQueryDTO employeePageQueryDTO);
@Select("select * from employee where id=#{id};")
Employee queryById(Integer id);
@AutoFill(OperationType.UPDATE)
void update(Employee employee);
}