Files
jsowell-charger-web/jsowell-pile/src/main/java/com/jsowell/pile/dto/CreateMerchantVipDTO.java

44 lines
627 B
Java
Raw Normal View History

2023-11-24 14:36:59 +08:00
package com.jsowell.pile.dto;
import lombok.Getter;
import lombok.Setter;
import java.math.BigDecimal;
/**
* 新增运营商vip DTO
*/
@Getter
@Setter
public class CreateMerchantVipDTO {
/**
* 手机号
*/
private String mobileNumber;
/**
* 所属运营商id
*/
private String targetMerchantId;
/**
* 操作类型
*/
private String type;
/**
* 金额
*/
private BigDecimal updatePrincipalBalance;
2023-11-28 10:31:03 +08:00
/**
* 赠送金
*/
private BigDecimal updateGiftBalance;
2024-03-02 16:45:36 +08:00
/**
* 来自后管 1-
*/
private String fromWeb;
2023-11-24 14:36:59 +08:00
}