whycxzp
2025-05-09 38b00bb8323977553a4f6b686d050849deca4e25
src/main/java/com/whyc/pojo/MailUser.java
@@ -1,5 +1,6 @@
package com.whyc.pojo;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
@TableName("tb_mail_user")
@@ -7,6 +8,13 @@
    private Integer id;
    private String user;
    //邮件名单:1-软件发布,2-sop,3-产品首次解锁后,5.6-物料上传提醒
    //前端调接口发邮件使用到的邮件类型:4-不良品
    private Integer type;
    @TableField(exist = false)
    private String mail;
    public Integer getId() {
        return id;
@@ -23,4 +31,20 @@
    public void setUser(String user) {
        this.user = user;
    }
    public Integer getType() {
        return type;
    }
    public void setType(Integer type) {
        this.type = type;
    }
    public String getMail() {
        return mail;
    }
    public void setMail(String mail) {
        this.mail = mail;
    }
}