Browse Source

feature-1.0-img:提现记录主键id字段类型修改

feature-1.0-img
‘‘ 3 years ago
parent
commit
7458924268
  1. 2
      bnyer-services/bnyer-img/src/main/java/com/bnyer/img/vo/WithdrawLogVo.java
  2. 2
      bnyer-services/bnyer-img/src/main/resources/com/bnyer/img/mapper/WithdrawLogMapper.xml

2
bnyer-services/bnyer-img/src/main/java/com/bnyer/img/vo/WithdrawLogVo.java

@ -20,7 +20,7 @@ import java.math.BigDecimal;
public class WithdrawLogVo implements Serializable {
@ApiModelProperty(value="主键id")
private Integer id;
private Long id;
@ApiModelProperty(value="流水号")
private String orderId;

2
bnyer-services/bnyer-img/src/main/resources/com/bnyer/img/mapper/WithdrawLogMapper.xml

@ -4,7 +4,7 @@
<resultMap id="BaseResultMap" type="com.bnyer.common.core.domain.WithdrawLog">
<!--@mbg.generated-->
<!--@Table img_withdraw_log-->
<id column="id" jdbcType="INTEGER" property="id" />
<id column="id" jdbcType="BIGINT" property="id" />
<result column="creator_id" jdbcType="BIGINT" property="creatorId" />
<result column="order_id" jdbcType="VARCHAR" property="orderId" />
<result column="amt" jdbcType="DECIMAL" property="amt" />

Loading…
Cancel
Save