TkioFlow.java 1.38 KB
Newer Older
lzxry committed
1 2 3
package common.model;

import javax.persistence.Entity;
lzxry committed
4
import javax.persistence.GeneratedValue;
lzxry committed
5 6 7 8 9 10 11 12 13 14
import javax.persistence.Id;

/**
 * @author liyin
 * @description
 * @date
 */
@Entity
public class TkioFlow {
    @Id
lzxry committed
15 16
    @GeneratedValue
    private Long id;
lzxry committed
17 18 19 20 21
    private String ds;
    private String email;
    private String contractCode;
    private Long flow;
    private Long costFlow;
22
    private String createTime;
lzxry committed
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

    public String getDs() {
        return ds;
    }

    public void setDs(String ds) {
        this.ds = ds;
    }

    public String getEmail() {
        return email;
    }

    public void setEmail(String email) {
        this.email = email;
    }

    public String getContractCode() {
        return contractCode;
    }

    public void setContractCode(String contractCode) {
        this.contractCode = contractCode;
    }

    public Long getFlow() {
        return flow;
    }

    public void setFlow(Long flow) {
        this.flow = flow;
    }

    public Long getCostFlow() {
        return costFlow;
    }

    public void setCostFlow(Long costFlow) {
        this.costFlow = costFlow;
    }
lzxry committed
63 64 65 66 67 68 69 70

    public Long getId() {
        return id;
    }

    public void setId(Long id) {
        this.id = id;
    }
71 72 73 74 75 76 77 78

    public String getCreateTime() {
        return createTime;
    }

    public void setCreateTime(String createTime) {
        this.createTime = createTime;
    }
lzxry committed
79
}