package com.ks.goldcorn.pojo.DO;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
public class GoldCornRecordCountMap implements Serializable {
|
|
private String sourceCode;
|
private int count;
|
|
public String getSourceCode() {
|
return sourceCode;
|
}
|
|
public void setSourceCode(String sourceCode) {
|
this.sourceCode = sourceCode;
|
}
|
|
public int getCount() {
|
return count;
|
}
|
|
public void setCount(int count) {
|
this.count = count;
|
}
|
}
|