mirror of
https://github.com/FreeeBird/hotel.git
synced 2025-06-29 00:38:05 +08:00
17 lines
375 B
Java
17 lines
375 B
Java
package cn.mafangui.hotel.mapper;
|
|
|
|
import cn.mafangui.hotel.entity.Worker;
|
|
|
|
public interface WorkerMapper {
|
|
int deleteByPrimaryKey(Integer workerId);
|
|
|
|
int insert(Worker record);
|
|
|
|
int insertSelective(Worker record);
|
|
|
|
Worker selectByPrimaryKey(Integer workerId);
|
|
|
|
int updateByPrimaryKeySelective(Worker record);
|
|
|
|
int updateByPrimaryKey(Worker record);
|
|
} |