Authored by hugufei

fix

1 -package com.yoho.search.recall.scene.models;  
2 -  
3 -import java.io.Serializable;  
4 -  
5 -public class RecallSknInfo implements Serializable{  
6 -  
7 - private static final long serialVersionUID = 7041576005343129736L;  
8 -  
9 - private Integer productSkn;  
10 - private String recallType;  
11 -  
12 - public RecallSknInfo() {  
13 - }  
14 -  
15 - public RecallSknInfo(Integer productSkn, String recallType) {  
16 - this.productSkn = productSkn;  
17 - this.recallType = recallType;  
18 - }  
19 -  
20 - public Integer getProductSkn() {  
21 - return productSkn;  
22 - }  
23 -  
24 - public void setProductSkn(Integer productSkn) {  
25 - this.productSkn = productSkn;  
26 - }  
27 -  
28 - public String getRecallType() {  
29 - return recallType;  
30 - }  
31 -  
32 - public void setRecallType(String recallType) {  
33 - this.recallType = recallType;  
34 - }  
35 -} 1 +package com.yoho.search.recall.scene.models;
  2 +
  3 +import java.io.Serializable;
  4 +
  5 +public class RecallSknInfo implements Serializable{
  6 +
  7 + private static final long serialVersionUID = 7041576005343129736L;
  8 +
  9 + private Integer productSkn;
  10 + private String recallType;
  11 +
  12 + public RecallSknInfo() {
  13 + }
  14 +
  15 + public RecallSknInfo(Integer productSkn, String recallType) {
  16 + this.productSkn = productSkn;
  17 + this.recallType = recallType;
  18 + }
  19 +
  20 + public Integer getProductSkn() {
  21 + return productSkn;
  22 + }
  23 +
  24 + public void setProductSkn(Integer productSkn) {
  25 + this.productSkn = productSkn;
  26 + }
  27 +
  28 + public String getRecallType() {
  29 + return recallType;
  30 + }
  31 +
  32 + public void setRecallType(String recallType) {
  33 + this.recallType = recallType;
  34 + }
  35 +}