You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
355 B
Java
18 lines
355 B
Java
package com.manage.dao;
|
|
|
|
import com.manage.entity.T_Menu;
|
|
|
|
public interface T_MenuMapper {
|
|
|
|
int deleteByPrimaryKey(Integer menuId);
|
|
|
|
int insert(T_Menu record);
|
|
|
|
int insertSelective(T_Menu record);
|
|
|
|
T_Menu selectByPrimaryKey(Integer menuId);
|
|
|
|
int updateByPrimaryKeySelective(T_Menu record);
|
|
|
|
int updateByPrimaryKey(T_Menu record);
|
|
} |