LastMaxPainDao.java 348 Bytes
package com.pipihelper.project.feishu.dao;

import com.pipihelper.project.feishu.entity.LastMaxPain;
import org.apache.ibatis.annotations.Mapper;

@Mapper
public interface LastMaxPainDao {

    LastMaxPain findById(Integer id);

    LastMaxPain findByFloor(Integer floor);

    void create(LastMaxPain pain);

    void update(LastMaxPain pain);

}