package com.hz.his.dto.user.money;
|
|
import com.hz.his.dto.PageDto;
|
import lombok.Data;
|
|
/**
|
* @author fwq
|
* 用户消费
|
* */
|
@Data
|
public class UserConsumeDto extends PageDto {
|
|
/**用户标识*/
|
private String userId;
|
/**金额类型*/
|
private Integer type;
|
/**操作类型*/
|
private Integer opType;
|
|
/**金额类型-储值金*/
|
public static final int TYPE_STORED_VALUE_FUND = 0;
|
/**金额类型-增值金*/
|
public static final int TYPE_VALUE_ADDED_FUND = 1;
|
/**金额类型-积分*/
|
public static final int TYPE_INTEGRAL = 2;
|
/**金额类型-预定金*/
|
public static final int TYPE_DEPOSIT = 3;
|
|
/**操作类型-增加*/
|
public static final int OP_TYPE_INCREASE = 1;
|
/**操作类型-减少*/
|
public static final int OP_TYPE_REDUCE = 2;
|
|
}
|