PurchaseInquiryReply.java 1006 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. package com.uas.ps.inquiry.model;
  2. import javax.persistence.*;
  3. import java.io.Serializable;
  4. /**
  5. * 采购询价单明细的报价记录
  6. *
  7. * @author hejq
  8. * @date 2018-01-13 19:23
  9. */
  10. @Table(name = "purc$inquiryreply")
  11. @Entity
  12. public class PurchaseInquiryReply implements Serializable {
  13. /**
  14. * default serialVersionUID
  15. */
  16. private static final long serialVersionUID = 1L;
  17. @Id
  18. @GeneratedValue(strategy = GenerationType.IDENTITY)
  19. @Column(name = "ir_id")
  20. private Long id;
  21. /**
  22. * (买家或卖家定义的)分段数量
  23. */
  24. @Column(name = "ir_lapqty")
  25. private Double lapQty;
  26. /**
  27. * (卖家报的)单价
  28. */
  29. @Column(name = "ir_price")
  30. private Double price;
  31. public Long getId() {
  32. return id;
  33. }
  34. public void setId(Long id) {
  35. this.id = id;
  36. }
  37. public Double getLapQty() {
  38. return lapQty;
  39. }
  40. public void setLapQty(Double lapQty) {
  41. this.lapQty = lapQty;
  42. }
  43. public Double getPrice() {
  44. return price;
  45. }
  46. public void setPrice(Double price) {
  47. this.price = price;
  48. }
  49. }