fei.wang
2024-05-13 19fe5a3d816184549e8ffa011c39f218734da8d5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//
// Source code recreated from a .class file by IntelliJ IDEA
// (powered by FernFlower decompiler)
//
 
package com.flow.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.flow.pojo.Mail;
 
public interface mailService extends IService<Mail> {
    int findMail(String var1);
 
    int addMail(Mail var1);
 
    int updateMail(Mail var1);
 
    Mail findMailUser(String var1);
}