linzhijie
2021-03-11 93af1c6ffb9ae0e894689ad3a37b548e57d54cff
src/main/java/com/ots/project/exam/domain/EntTestMemberBackstage.java
@@ -1,64 +1,90 @@
package com.ots.project.exam.domain;
import com.ots.framework.aspectj.lang.annotation.Excel;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.ots.framework.web.domain.BaseEntity;
import java.util.Date;
/**
 * EntTestMemberBackstage对象 ent_test_member_backstage
 *
 * @author ots
 * @date 2020-02-29
 */
public class EntTestMemberBackstage extends BaseEntity
{
    private static final long serialVersionUID = 1L;
    /** 评测人员编码 */
    private Long memberId;
    /** 名称 */
    @Excel(name = "名称")
    private String memberName;
    /** 部门 */
    @Excel(name = "部门")
    private String memberDept;
    /** 邮箱 */
    @Excel(name = "邮箱")
    private String memberEmail;
    /** 手机号码 */
    @Excel(name = "手机号码")
    private String memberPhone;
    /** 测试包编码 */
    @Excel(name = "测试包编码")
    private Long testId;
    /** 测试code */
    @Excel(name = "测试code")
    private String token;
    /** 开始答题时间 */
    @Excel(name = "开始答题时间", width = 30, dateFormat = "yyyy-MM-dd")
    private Date startTime;
    /** null */
    @Excel(name = "null", width = 30, dateFormat = "yyyy-MM-dd")
    private Date endTime;
    /** 短息发送状态(0未处理 1已发送 2发送中 3发送失败 4退信) */
    @Excel(name = "短息发送状态", readConverterExp = "0=未处理,1=已发送,2=发送中,3=发送失败,4=退信")
    private String smsStatus;
    /** 短信发送时间 */
    @Excel(name = "短信发送时间", width = 30, dateFormat = "yyyy-MM-dd")
    private Date smsTime;
    /** 邮件发送状态 (0未处理 1已发送 2发送中 3发送失败 4退信) */
    @Excel(name = "邮件发送状态 (0未处理 1已发送 2发送中 3发送失败 4退信)")
    private String emailStatus;
    /** 邮件发送时间 */
    @Excel(name = "邮件发送时间", width = 30, dateFormat = "yyyy-MM-dd")
    private Date emailTime;
    /** 0未处理 1已完成 2答题中 3作废 */
    @Excel(name = "0未处理 1已完成 2答题中 3作废")
    private String status;
    /** null */
    @Excel(name = "null")
    private String firstname;
    /** null */
    @Excel(name = "null")
    private String lastname;
    public void setMemberId(Long memberId) 
    {
        this.memberId = memberId;
    }
    public Long getMemberId() 
    {
        return memberId;
@@ -67,6 +93,7 @@
    {
        this.memberName = memberName;
    }
    public String getMemberName() 
    {
        return memberName;
@@ -75,6 +102,7 @@
    {
        this.memberDept = memberDept;
    }
    public String getMemberDept() 
    {
        return memberDept;
@@ -83,6 +111,7 @@
    {
        this.memberEmail = memberEmail;
    }
    public String getMemberEmail() 
    {
        return memberEmail;
@@ -91,6 +120,7 @@
    {
        this.memberPhone = memberPhone;
    }
    public String getMemberPhone() 
    {
        return memberPhone;
@@ -99,6 +129,7 @@
    {
        this.testId = testId;
    }
    public Long getTestId() 
    {
        return testId;
@@ -107,6 +138,7 @@
    {
        this.token = token;
    }
    public String getToken() 
    {
        return token;
@@ -115,6 +147,7 @@
    {
        this.startTime = startTime;
    }
    public Date getStartTime() 
    {
        return startTime;
@@ -123,6 +156,7 @@
    {
        this.endTime = endTime;
    }
    public Date getEndTime() 
    {
        return endTime;
@@ -131,6 +165,7 @@
    {
        this.smsStatus = smsStatus;
    }
    public String getSmsStatus() 
    {
        return smsStatus;
@@ -139,6 +174,7 @@
    {
        this.smsTime = smsTime;
    }
    public Date getSmsTime() 
    {
        return smsTime;
@@ -147,6 +183,7 @@
    {
        this.emailStatus = emailStatus;
    }
    public String getEmailStatus() 
    {
        return emailStatus;
@@ -155,6 +192,7 @@
    {
        this.emailTime = emailTime;
    }
    public Date getEmailTime() 
    {
        return emailTime;
@@ -163,6 +201,7 @@
    {
        this.status = status;
    }
    public String getStatus() 
    {
        return status;
@@ -171,6 +210,7 @@
    {
        this.firstname = firstname;
    }
    public String getFirstname() 
    {
        return firstname;
@@ -179,10 +219,12 @@
    {
        this.lastname = lastname;
    }
    public String getLastname() 
    {
        return lastname;
    }
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)