admin
2025-02-20 f537abe9f3646c739beaf15076246a2f71a347e9
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;
    }
}