package com.hz.phis.dt.user.money;
|
|
import com.hz.his.dto.PageDto;
|
|
/**用户消费*/
|
public class UserConsumeDt 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;
|
|
public String getUserId() {
|
return userId;
|
}
|
|
public void setUserId(String userId) {
|
this.userId = userId;
|
}
|
|
public Integer getType() {
|
return type;
|
}
|
|
public void setType(Integer type) {
|
this.type = type;
|
}
|
|
public Integer getOpType() {
|
return opType;
|
}
|
|
public void setOpType(Integer opType) {
|
this.opType = opType;
|
}
|
|
|
}
|