Authored by hugufei

删除无用的类

1 -package com.yoho.search.dal.model;  
2 -  
3 -import java.io.Serializable;  
4 -import java.math.BigDecimal;  
5 -  
6 -/**  
7 - * Created by wangnan on 2016/6/30.  
8 - */  
9 -public class BasePinRatio implements Serializable {  
10 -  
11 - private static final long serialVersionUID = -4200090776085802343L;  
12 - private Integer productSkn;  
13 - private BigDecimal basePinRatio;  
14 -  
15 - public Integer getProductSkn() {  
16 - return productSkn;  
17 - }  
18 -  
19 - public void setProductSkn(Integer productSkn) {  
20 - this.productSkn = productSkn;  
21 - }  
22 -  
23 - public BigDecimal getBasePinRatio() {  
24 - return basePinRatio;  
25 - }  
26 -  
27 - public void setBasePinRatio(BigDecimal basePinRatio) {  
28 - this.basePinRatio = basePinRatio;  
29 - }  
30 -}  
1 -package com.yoho.search.dal.model;  
2 -  
3 -import java.io.Serializable;  
4 -  
5 -/**  
6 - * Created by wangnan on 2016/6/30.  
7 - */  
8 -public class BrokenCode implements Serializable {  
9 -  
10 - private static final long serialVersionUID = -5187295436950928862L;  
11 - private Integer productSkn;  
12 - private Double breakingRate;  
13 -  
14 - public Integer getProductSkn() {  
15 - return productSkn;  
16 - }  
17 -  
18 - public void setProductSkn(Integer productSkn) {  
19 - this.productSkn = productSkn;  
20 - }  
21 -  
22 - public Double getBreakingRate() {  
23 - return breakingRate;  
24 - }  
25 -  
26 - public void setBreakingRate(Double breakingRate) {  
27 - this.breakingRate = breakingRate;  
28 - }  
29 -}  
1 -package com.yoho.search.dal.model;  
2 -  
3 -/**  
4 - * Created by wangnan on 2016/6/30.  
5 - */  
6 -public class DiscountProductSkn {  
7 - private Integer productSkn;  
8 - private String poolId;  
9 - private Double score;  
10 -  
11 - public Integer getProductSkn() {  
12 - return productSkn;  
13 - }  
14 -  
15 - public void setProductSkn(Integer productSkn) {  
16 - this.productSkn = productSkn;  
17 - }  
18 -  
19 - public String getPoolId() {  
20 - return poolId;  
21 - }  
22 -  
23 - public void setPoolId(String poolId) {  
24 - this.poolId = poolId;  
25 - }  
26 -  
27 - public Double getScore() {  
28 - return score;  
29 - }  
30 -  
31 - public void setScore(Double score) {  
32 - this.score = score;  
33 - }  
34 -}  
1 -package com.yoho.search.dal.model;  
2 -  
3 -  
4 -/**  
5 - * Created by wangnan on 2016/6/30.  
6 - */  
7 -public class ProductDefaultImage{  
8 - private Integer productId;  
9 - private String defaultImage;  
10 -  
11 - public ProductDefaultImage() {  
12 - }  
13 -  
14 - public ProductDefaultImage(Integer productId, String defaultImage) {  
15 - this.productId = productId;  
16 - this.defaultImage = defaultImage;  
17 - }  
18 -  
19 - public Integer getProductId() {  
20 - return productId;  
21 - }  
22 -  
23 - public void setProductId(Integer productId) {  
24 - this.productId = productId;  
25 - }  
26 -  
27 - public String getDefaultImage() {  
28 - return defaultImage;  
29 - }  
30 -  
31 - public void setDefaultImage(String defaultImage) {  
32 - this.defaultImage = defaultImage;  
33 - }  
34 -}  
1 -package com.yoho.search.dal.model;  
2 -  
3 -/**  
4 - * Created by wangnan on 2017/3/9.  
5 - */  
6 -public class ShopDecoratorBO {  
7 - private Integer shopsId;  
8 - private Integer shopsDecoratorId;  
9 -  
10 - public Integer getShopsId() {  
11 - return shopsId;  
12 - }  
13 -  
14 - public void setShopsId(Integer shopsId) {  
15 - this.shopsId = shopsId;  
16 - }  
17 -  
18 - public Integer getShopsDecoratorId() {  
19 - return shopsDecoratorId;  
20 - }  
21 -  
22 - public void setShopsDecoratorId(Integer shopsDecoratorId) {  
23 - this.shopsDecoratorId = shopsDecoratorId;  
24 - }  
25 -}