|
|
@@ -20,8 +20,9 @@ import java.util.Date;
|
|
|
*/
|
|
|
@Getter
|
|
|
@Setter
|
|
|
-@SearchBean(tables = "goods_wholesale_user_deposit gwud")
|
|
|
-public class GoodsWholesaleUserDeposit extends BaseEntity{
|
|
|
+@SearchBean(tables = "goods_wholesale_user_deposit gwud",
|
|
|
+ where = "gwud.status != 'noPayment'")
|
|
|
+public class GoodsWholesaleUserDeposit extends BaseEntity {
|
|
|
private Long userId;
|
|
|
|
|
|
private BigDecimal money;
|
|
|
@@ -98,12 +99,11 @@ public class GoodsWholesaleUserDeposit extends BaseEntity{
|
|
|
|
|
|
@Getter
|
|
|
@AllArgsConstructor
|
|
|
- public enum Type{
|
|
|
- WeChat("wechat","微信"),
|
|
|
- ALI_PAY("zfb","支付宝"),
|
|
|
- PAYPAL("paypal","paypal支付"),
|
|
|
- STRIPE("stripe","stripe支付")
|
|
|
- ;
|
|
|
+ public enum Type {
|
|
|
+ WeChat("wechat", "微信"),
|
|
|
+ ALI_PAY("zfb", "支付宝"),
|
|
|
+ PAYPAL("paypal", "paypal支付"),
|
|
|
+ STRIPE("stripe", "stripe支付");
|
|
|
String type;
|
|
|
String desc;
|
|
|
|