package com.fuzamei.dto; import com.fuzamei.vo.AssetDetailVo; /** * @file_name: AssetChangeDto * @Description: * @author: 刘林杰 * @date: 五月 2018/5/10 12:09 * @version: */ public class AssetChangeDto extends AssetDetailVo{ private String accountId; public String getAccountId() { return accountId; } public void setAccountId(String accountId) { this.accountId = accountId; } public Double add(Double d){ setChinaYuan(getChinaYuan()+d); return getChinaYuan(); } }