审查视图

src/main/java/com/tianbo/analysis/model/SENDLOG.java 1.8 KB
朱兆平 authored
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
package com.tianbo.analysis.model;

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

public class SENDLOG {
    private String autoid;

    private Date createdate;

    private String opauthor;

    private Long sendpeice;

    private BigDecimal sendweight;

    private String receiption;

    private String messagetype;

    private String messageautoid;

    public String getAutoid() {
        return autoid;
    }

    public void setAutoid(String autoid) {
        this.autoid = autoid == null ? null : autoid.trim();
    }

    public Date getCreatedate() {
        return createdate;
    }

    public void setCreatedate(Date createdate) {
        this.createdate = createdate;
    }

    public String getOpauthor() {
        return opauthor;
    }

    public void setOpauthor(String opauthor) {
        this.opauthor = opauthor == null ? null : opauthor.trim();
    }

    public Long getSendpeice() {
        return sendpeice;
    }

    public void setSendpeice(Long sendpeice) {
        this.sendpeice = sendpeice;
    }

    public BigDecimal getSendweight() {
        return sendweight;
    }

    public void setSendweight(BigDecimal sendweight) {
        this.sendweight = sendweight;
    }

    public String getReceiption() {
        return receiption;
    }

    public void setReceiption(String receiption) {
        this.receiption = receiption == null ? null : receiption.trim();
    }

    public String getMessagetype() {
        return messagetype;
    }

    public void setMessagetype(String messagetype) {
        this.messagetype = messagetype == null ? null : messagetype.trim();
    }

    public String getMessageautoid() {
        return messageautoid;
    }

    public void setMessageautoid(String messageautoid) {
        this.messageautoid = messageautoid == null ? null : messageautoid.trim();
    }
}