| | |
| | | private BigDecimal money;// 到账金额
|
| | | private Date date;// 到账时间
|
| | | private Boolean orderFirst;// 该订单是否是首次到账
|
| | | private int delayHour;// 延时的时间(以小时计算)
|
| | |
|
| | | public int getDelayHour() {
|
| | | return delayHour;
|
| | | }
|
| | |
|
| | | public void setDelayHour(int delayHour) {
|
| | | this.delayHour = delayHour;
|
| | | }
|
| | |
|
| | | public Boolean getOrderFirst() {
|
| | | return orderFirst;
|
| | |
| | | super();
|
| | | }
|
| | |
|
| | | public OrderMoneyRecievedMQMsg(int type, Long uid, Integer sourceType, String orderId, BigDecimal money,
|
| | | Date date) {
|
| | | public OrderMoneyRecievedMQMsg(int type, Long uid, Integer sourceType, String orderId, BigDecimal money, Date date,
|
| | | int delayHour) {
|
| | | super();
|
| | | this.type = type;
|
| | | this.uid = uid;
|
| | |
| | | this.orderId = orderId;
|
| | | this.money = money;
|
| | | this.date = date;
|
| | | this.delayHour = delayHour;
|
| | | }
|
| | |
|
| | | public int getType() {
|