package cn.wisenergy.mapper;
import cn.wisenergy.model.app.Staff;
import cn.wisenergy.model.app.StaffUserVip;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Param;
import java.util.List;
public interface StaffUserVipMapper extends BaseMapper<StaffUserVip> {
List<StaffUserVip> getList(@Param("staffId") Integer staffId);
List<StaffUserVip> getAllList();
int add(StaffUserVip staffUserVip);
}
-
cy authored40696f81