New file |
| | |
| | | package com.hz.phis.dt.user.money; |
| | | |
| | | import com.hz.his.dto.PageDto; |
| | | |
| | | /** |
| | | * 用户待领取增值金列表 |
| | | * @author fwq |
| | | * */ |
| | | public class UserWaitIncDt extends PageDto { |
| | | /**phis用户标识*/ |
| | | private String userId; |
| | | /**资金类型*/ |
| | | private Integer fundType; |
| | | /**资金操作类型,增或者减*/ |
| | | private Integer fundOpType; |
| | | /**状态0 等待处理 1 处理成功*/ |
| | | private Integer status; |
| | | |
| | | public String getUserId() { |
| | | return userId; |
| | | } |
| | | |
| | | public void setUserId(String userId) { |
| | | this.userId = userId; |
| | | } |
| | | |
| | | public Integer getFundType() { |
| | | return fundType; |
| | | } |
| | | |
| | | public void setFundType(Integer fundType) { |
| | | this.fundType = fundType; |
| | | } |
| | | |
| | | public Integer getFundOpType() { |
| | | return fundOpType; |
| | | } |
| | | |
| | | public void setFundOpType(Integer fundOpType) { |
| | | this.fundOpType = fundOpType; |
| | | } |
| | | |
| | | public Integer getStatus() { |
| | | return status; |
| | | } |
| | | |
| | | public void setStatus(Integer status) { |
| | | this.status = status; |
| | | } |
| | | |
| | | /**资金类型-储值金*/ |
| | | public static final int FUND_TYPE_STORED_VALUE_FUND = 0; |
| | | /**资金类型-增值金*/ |
| | | public static final int FUND_TYPE_VALUE_ADDED_FUND = 1; |
| | | /**资金类型-积分*/ |
| | | public static final int FUND_TYPE_INTEGRAL = 2; |
| | | /**资金类型-预定金*/ |
| | | public static final int FUND_TYPE_DEPOSIT = 3; |
| | | |
| | | /**等待处理*/ |
| | | public static final int STATUS_WAI = 0; |
| | | /**处理成功*/ |
| | | public static final int STATUS_SUCCEED = 1; |
| | | |
| | | /**操作人类型-系统处理 系统处理没有操作人id和操作人名称*/ |
| | | public static final int OPERATOR_TYPE_SYSTEM = 0; |
| | | /**操作人类型-后台账号*/ |
| | | public static final int OPERATOR_TYPE_ADMIN = 1; |
| | | /**操作人类型-用户*/ |
| | | public static final int OPERATOR_TYPE_USER = 2; |
| | | /**操作人类型-员工*/ |
| | | public static final int OPERATOR_TYPE_EMPLOYEE = 3; |
| | | |
| | | /**资金操作类型-减少*/ |
| | | public static final int FUND_OP_TYPE_REDUCE = 0; |
| | | /**资金操作类型-增加*/ |
| | | public static final int FUND_OP_TYPE_INCREASE = 1; |
| | | |
| | | /**操作类型-系统处理*/ |
| | | public static final int OP_TYPE_SYSTEM = 0; |
| | | /**操作类型-用户领取*/ |
| | | public static final int OP_TYPE_RECEIVE = 1; |
| | | |
| | | /**发送短信状态-失败*/ |
| | | public static Integer SMS_STATUS_FALL = -1; |
| | | /**发送短信状态-未发送*/ |
| | | public static Integer SMS_STATUS_UNSENT = 0; |
| | | /**发送短信状态-成功*/ |
| | | public static Integer SMS_STATUS_SUCCEED = 1; |
| | | } |