attachpaymentlog.java

来自「论坛软件系统亦称电子公告板(BBS)系统」· Java 代码 · 共 68 行

JAVA
68
字号
package cn.jsprun.domain;
public class Attachpaymentlog  implements java.io.Serializable {
	private static final long serialVersionUID = -169055094667766171L;
	private AttachpaymentlogId id;
     private Integer authorid;
     private Integer dateline;
     private Integer amount;
     private Integer netamount;

    public Attachpaymentlog() {
    }
    public Attachpaymentlog(AttachpaymentlogId id, Integer authorid, Integer dateline, Integer amount, Integer netamount) {
        this.id = id;
        this.authorid = authorid;
        this.dateline = dateline;
        this.amount = amount;
        this.netamount = netamount;
    }

    public AttachpaymentlogId getId() {
        return this.id;
    }
    
    public void setId(AttachpaymentlogId id) {
        this.id = id;
    }

    public Integer getAuthorid() {
        return this.authorid;
    }
    
    public void setAuthorid(Integer authorid) {
        this.authorid = authorid;
    }

    public Integer getDateline() {
        return this.dateline;
    }
    
    public void setDateline(Integer dateline) {
        this.dateline = dateline;
    }

    public Integer getAmount() {
        return this.amount;
    }
    
    public void setAmount(Integer amount) {
        this.amount = amount;
    }

    public Integer getNetamount() {
        return this.netamount;
    }
    
    public void setNetamount(Integer netamount) {
        this.netamount = netamount;
    }
   








}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?