| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- package com.uas.ps.inquiry.model;
- import javax.persistence.*;
- import java.io.Serializable;
- /**
- * 采购询价单明细的报价记录
- *
- * @author hejq
- * @date 2018-01-13 19:23
- */
- @Table(name = "purc$inquiryreply")
- @Entity
- public class PurchaseInquiryReply implements Serializable {
- /**
- * default serialVersionUID
- */
- private static final long serialVersionUID = 1L;
- @Id
- @GeneratedValue(strategy = GenerationType.IDENTITY)
- @Column(name = "ir_id")
- private Long id;
- /**
- * (买家或卖家定义的)分段数量
- */
- @Column(name = "ir_lapqty")
- private Double lapQty;
- /**
- * (卖家报的)单价
- */
- @Column(name = "ir_price")
- private Double price;
- public Long getId() {
- return id;
- }
- public void setId(Long id) {
- this.id = id;
- }
- public Double getLapQty() {
- return lapQty;
- }
- public void setLapQty(Double lapQty) {
- this.lapQty = lapQty;
- }
- public Double getPrice() {
- return price;
- }
- public void setPrice(Double price) {
- this.price = price;
- }
- }
|