package com.yeshi.makemoney.app.service.query.goldcorn;
|
|
import com.yeshi.makemoney.app.entity.goldcorn.GoldCornGetType;
|
import com.yeshi.makemoney.app.service.query.BaseQuery;
|
|
public class GoldCornGetPriceQuery extends BaseQuery {
|
|
private GoldCornGetType type;
|
|
public GoldCornGetType getType() {
|
return type;
|
}
|
|
public void setType(GoldCornGetType type) {
|
this.type = type;
|
}
|
|
}
|