[fix]去掉租户检查
This commit is contained in:
parent
f7a7610a7c
commit
ce4bd54049
@ -149,6 +149,9 @@ tenant:
|
||||
- sys_message_template
|
||||
- ums_fans
|
||||
- ums_block
|
||||
- ums_forbidden
|
||||
- ums_member_bank
|
||||
- ums_tenant_forbidden
|
||||
- oms_aftersale
|
||||
- oms_aftersale_item
|
||||
- oms_order
|
||||
|
@ -0,0 +1,38 @@
|
||||
package com.wzj.soopin.member.domain.po;
|
||||
|
||||
|
||||
import org.dromara.common.core.domain.model.BaseAudit;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
/**
|
||||
* 提现
|
||||
*
|
||||
* @author wzj
|
||||
* @date 2023-03-07
|
||||
*/
|
||||
public class Withdraw extends BaseAudit {
|
||||
|
||||
private Long id;
|
||||
|
||||
private String code;
|
||||
|
||||
private Long memberId;
|
||||
|
||||
private BigDecimal money;
|
||||
|
||||
private BigDecimal fee;
|
||||
|
||||
private BigDecimal actualMoney;
|
||||
|
||||
private Integer status;
|
||||
private Integer type;
|
||||
private Long auditBy;
|
||||
|
||||
private LocalDateTime auditTime;
|
||||
|
||||
private Integer method;
|
||||
|
||||
private Integer auditStatus;
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user