whyclxw
2025-03-06 eb33c60306f707ec7b30a048388e4de702ca2f15
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")
@@ -8,8 +9,11 @@
    private Integer id;
    private String user;
    //1-软件发布,2-sop
    //邮件名单:1-软件发布,2-sop,3-产品首次解锁后
    private Integer type;
    @TableField(exist = false)
    private String mail;
    public Integer getId() {
        return id;
@@ -34,4 +38,12 @@
    public void setType(Integer type) {
        this.type = type;
    }
    public String getMail() {
        return mail;
    }
    public void setMail(String mail) {
        this.mail = mail;
    }
}