新增钱包编号字段

This commit is contained in:
2023-11-08 15:58:24 +08:00
parent 714f3e41d7
commit 968e48ba18
3 changed files with 423 additions and 483 deletions

View File

@@ -27,6 +27,11 @@ public class MemberWalletLog {
*/
private String memberId;
/**
* 钱包编号
*/
private String walletCode;
/**
* 类型1-进账2-出账)
*/

View File

@@ -63,10 +63,10 @@ public interface MemberWalletLogMapper {
int updateBatch(List<MemberWalletLog> list);
int updateBatchSelective(List<MemberWalletLog> list);
int batchInsert(@Param("list") List<MemberWalletLog> list);
int updateBatchSelective(List<MemberWalletLog> list);
/**
* 查询用户账户余额变动信息
*