KKSU
2024-03-28 4d0239bfc63f23d7999880808ee665dfd2dae8da
滑点
2 files modified
8 ■■■■ changed files
src/main/java/cc/mrbird/febs/dapp/vo/MoneyFlowVo.java 3 ●●●●● patch | view | raw | blame | history
src/main/resources/mapper/dapp/DappFundFlowDao.xml 5 ●●●●● patch | view | raw | blame | history
src/main/java/cc/mrbird/febs/dapp/vo/MoneyFlowVo.java
@@ -18,6 +18,9 @@
    @ApiModelProperty(value = "地址")
    private String address;
    @ApiModelProperty(value = "类型")
    private Integer type;
    @ApiModelProperty(value = "内容")
    private String content;
src/main/resources/mapper/dapp/DappFundFlowDao.xml
@@ -104,9 +104,10 @@
    <select id="findMoneyFlowVos" resultType="cc.mrbird.febs.dapp.vo.MoneyFlowVo">
        select
            concat(left(a.from_hash,5), '******', right(a.from_hash,5)) address,
--             concat(left(a.from_hash,5), '******', right(a.from_hash,5)) address,
        a.amount amount,
        a.content content,
        a.type type,
--         a.content content,
        a.create_time createTime
        from dapp_fund_flow a
        where