1234567891011121314151617181920212223242526272829303132333435363738 |
- package com.xt.jygl.gkyxtjyfx.jtgdzctjfx.entity;
- import javax.persistence.Column;
- import javax.persistence.Entity;
- import javax.persistence.Id;
- import javax.persistence.Table;
- import com.xtframe.sec.common.BaseEntity;
- @Entity
- @Table(name = "JTT_5_VIEW")
- public class JtgdzctzfxEntity implements Cloneable {
- /**
- *
- */
- private static final long serialVersionUID = 1L;
- @Id
- private String id;
-
- @Column(name = "amount")
- private double amount;
- public double getAmount() {
- return amount;
- }
- public void setAmount(double amount) {
- this.amount = amount;
- }
-
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- }
|