admin
2021-04-19 eb7f3343af839a7c71f16e8ada2b25d5e2201c08
src/main/java/com/yeshi/buwan/vo/goldcorn/GoldCornTaskVO.java
@@ -5,6 +5,7 @@
public class GoldCornTaskVO {
    private String sourceCode;
    private String icon;
    private String title;
    private String goldCorn;
@@ -14,6 +15,14 @@
    private String params;
    private boolean enable;
    public String getSourceCode() {
        return sourceCode;
    }
    public void setSourceCode(String sourceCode) {
        this.sourceCode = sourceCode;
    }
    public String getIcon() {
        return icon;
@@ -86,7 +95,8 @@
        vo.setEnable(true);
        vo.setIcon(source.getIcon());
        vo.setTitle(source.getSourceName());
        vo.setGoldCorn("+" + source.getGoldCorn() );
        vo.setGoldCorn("+" + source.getGoldCorn());
        vo.setSourceCode(source.getSourceCode());
        return vo;
    }
}