Skip to content
  • Projects
  • Groups
  • Snippets
  • Help
  • This project
    • Loading...
  • Sign in

zhangshaowu / pipi-helper

Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Settings
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • pipi-helper
  • ..
  • dao
  • PainDao.java
  • zhaolianjie's avatar
    卡片流程 - 抢 和 推迟 · c3746196
    zhaolianjie committed Oct 15, 2022
    c3746196 Browse Files
PainDao.java 423 Bytes
RawBlameHistoryPermalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
package com.pipihelper.project.feishu.dao;

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

import java.util.List;

@Mapper
public interface PainDao {

    Pain findById(Integer id);

    Pain findByOpenId(String openId);

    void deleteById(Integer id);

    void create(Pain pain);

    void update(Pain pain);

    List<Pain> findAll();

    void waitPain(Pain pain);

}