MessageBak.java 2.5 KB
package com.tianbo.model;

import java.math.BigDecimal;
import java.util.Date;

public class MessageBak {
    private Short fid;

    private String messtype;

    private String sndr;

    private String seqn;

    private Date sntm;

    private String type;

    private Date btime;

    private String reasoncode;

    private String styp;

    private Short isinsert;

    private Short ishistroy;

    private BigDecimal isshipmentstatus;

    private String content;

    public Short getFid() {
        return fid;
    }

    public void setFid(Short fid) {
        this.fid = fid;
    }

    public String getMesstype() {
        return messtype;
    }

    public void setMesstype(String messtype) {
        this.messtype = messtype == null ? null : messtype.trim();
    }

    public String getSndr() {
        return sndr;
    }

    public void setSndr(String sndr) {
        this.sndr = sndr == null ? null : sndr.trim();
    }

    public String getSeqn() {
        return seqn;
    }

    public void setSeqn(String seqn) {
        this.seqn = seqn == null ? null : seqn.trim();
    }

    public Date getSntm() {
        return sntm;
    }

    public void setSntm(Date sntm) {
        this.sntm = sntm;
    }

    public String getType() {
        return type;
    }

    public void setType(String type) {
        this.type = type == null ? null : type.trim();
    }

    public Date getBtime() {
        return btime;
    }

    public void setBtime(Date btime) {
        this.btime = btime;
    }

    public String getReasoncode() {
        return reasoncode;
    }

    public void setReasoncode(String reasoncode) {
        this.reasoncode = reasoncode == null ? null : reasoncode.trim();
    }

    public String getStyp() {
        return styp;
    }

    public void setStyp(String styp) {
        this.styp = styp == null ? null : styp.trim();
    }

    public Short getIsinsert() {
        return isinsert;
    }

    public void setIsinsert(Short isinsert) {
        this.isinsert = isinsert;
    }

    public Short getIshistroy() {
        return ishistroy;
    }

    public void setIshistroy(Short ishistroy) {
        this.ishistroy = ishistroy;
    }

    public BigDecimal getIsshipmentstatus() {
        return isshipmentstatus;
    }

    public void setIsshipmentstatus(BigDecimal isshipmentstatus) {
        this.isshipmentstatus = isshipmentstatus;
    }

    public String getContent() {
        return content;
    }

    public void setContent(String content) {
        this.content = content == null ? null : content.trim();
    }
}