JtgdzctzfxEntity.java 705 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. package com.xt.jygl.gkyxtjyfx.jtgdzctjfx.entity;
  2. import javax.persistence.Column;
  3. import javax.persistence.Entity;
  4. import javax.persistence.Id;
  5. import javax.persistence.Table;
  6. import com.xtframe.sec.common.BaseEntity;
  7. @Entity
  8. @Table(name = "JTT_5_VIEW")
  9. public class JtgdzctzfxEntity implements Cloneable {
  10. /**
  11. *
  12. */
  13. private static final long serialVersionUID = 1L;
  14. @Id
  15. private String id;
  16. @Column(name = "amount")
  17. private double amount;
  18. public double getAmount() {
  19. return amount;
  20. }
  21. public void setAmount(double amount) {
  22. this.amount = amount;
  23. }
  24. public String getId() {
  25. return id;
  26. }
  27. public void setId(String id) {
  28. this.id = id;
  29. }
  30. }