| | |
| | | */ |
| | | private Integer operateNo; |
| | | |
| | | private Long memberId; |
| | | |
| | | public OrderModel(Long orderId, Integer type, String price, String symbol){ |
| | | |
| | | public OrderModel(Long orderId, Integer type, String price, String symbol, Long memberId){ |
| | | this.orderId= orderId; |
| | | this.type= type; |
| | | this.price= price; |
| | | this.symbol= symbol; |
| | | this.memberId = memberId; |
| | | } |
| | | |
| | | public OrderModel(Long orderId,Integer type,String price, String symbol,Integer operateNo){ |
| | | public OrderModel(Long orderId,Integer type,String price, String symbol,Integer operateNo, Long memberId){ |
| | | this.orderId= orderId; |
| | | this.type= type; |
| | | this.price= price; |
| | | this.symbol= symbol; |
| | | this.operateNo= operateNo; |
| | | this.memberId = memberId; |
| | | } |
| | | |
| | | public Integer getOperateNo() { |
| | |
| | | public void setSymbol(String symbol) { |
| | | this.symbol = symbol; |
| | | } |
| | | |
| | | public Long getMemberId() { |
| | | return memberId; |
| | | } |
| | | |
| | | public void setMemberId(Long memberId) { |
| | | this.memberId = memberId; |
| | | } |
| | | } |