|
@@ -0,0 +1,34 @@
|
|
|
+package com.iamberry.rst.core.order;
|
|
|
+
|
|
|
+import java.io.Serializable;
|
|
|
+
|
|
|
+public class StrategyProduct implements Serializable {
|
|
|
+ private static final long serialVersionUID = -2966745222986608411L;
|
|
|
+ private Integer strategyPorudctId;
|
|
|
+ private Integer strategyId;
|
|
|
+ private Integer productId;
|
|
|
+
|
|
|
+ public Integer getStrategyPorudctId() {
|
|
|
+ return strategyPorudctId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStrategyPorudctId(Integer strategyPorudctId) {
|
|
|
+ this.strategyPorudctId = strategyPorudctId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getStrategyId() {
|
|
|
+ return strategyId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStrategyId(Integer strategyId) {
|
|
|
+ this.strategyId = strategyId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getProductId() {
|
|
|
+ return productId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setProductId(Integer productId) {
|
|
|
+ this.productId = productId;
|
|
|
+ }
|
|
|
+}
|