Blame view

src/main/java/com/xkl/domain/XklAmpReportDetailEntity.java 1.28 KB
1 2 3 4 5 6 7 8 9 10 11 12
package com.xkl.domain;

import lombok.Data;

import javax.persistence.*;

/**
 * Created by win7 on 2016/11/21.
 * report详情
 */
@Data
@Entity
fangyeqing authored
13
@Table(name = "xkl_amp_report_detail")
14 15
public class XklAmpReportDetailEntity {
    @Id
zhaoyue authored
16
    @GeneratedValue(strategy = GenerationType.IDENTITY)
17 18 19 20 21 22 23 24 25 26 27 28 29 30
    @Column(name = "id")
    private long id;
    @Basic
    @Column(name = "report_id")
    private long reportId;
    @Basic
    @Column(name = "item_id")
    private int itemId;
    @Basic
    @Column(name = "item_value")
    private double itemValue;
    @Basic
    @Column(name = "status")
    private int status;
zhaoyue authored
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

    public long getId() {
        return id;
    }

    public void setId(long id) {
        this.id = id;
    }

    public long getReportId() {
        return reportId;
    }

    public void setReportId(long reportId) {
        this.reportId = reportId;
    }

    public int getItemId() {
        return itemId;
    }

    public void setItemId(int itemId) {
        this.itemId = itemId;
    }

    public double getItemValue() {
        return itemValue;
    }

    public void setItemValue(double itemValue) {
        this.itemValue = itemValue;
    }

    public int getStatus() {
        return status;
    }

    public void setStatus(int status) {
        this.status = status;
    }
71
}