| package com.matrix.system.shopXcx.bean; | 
|   | 
| import com.matrix.core.pojo.EntityDTO; | 
| import com.matrix.core.anotations.Extend; | 
|   | 
| /** | 
|  * @description 提现订单关联 | 
|  * @author wzy | 
|  * @date 2020-02-16 20:55 | 
|  */ | 
| public class WxApplyOrderRelate  extends EntityDTO{ | 
|     @Extend | 
|     private static final long serialVersionUID = 1L;  | 
|   | 
|      | 
|     /** | 
|      * 主键 | 
|      */ | 
|     private Long  id; | 
|              | 
|      | 
|     /** | 
|      * 申请id | 
|      */ | 
|     private Long  applyId; | 
|              | 
|      | 
|     /** | 
|      * 订单id | 
|      */ | 
|     private Long  orderId; | 
|   | 
|     private String orderIds; | 
|   | 
|     public String getOrderIds() { | 
|         return orderIds; | 
|     } | 
|   | 
|     public void setOrderIds(String orderIds) { | 
|         this.orderIds = orderIds; | 
|     } | 
|   | 
|     public Long getId() { | 
|         return id; | 
|     } | 
|         | 
|        public void setId(Long id) { | 
|         this.id=id; | 
|     } | 
|         | 
|   | 
|     public Long getApplyId() { | 
|         return applyId; | 
|     } | 
|         | 
|        public void setApplyId(Long applyId) { | 
|         this.applyId=applyId; | 
|     } | 
|         | 
|   | 
|     public Long getOrderId() { | 
|         return orderId; | 
|     } | 
|         | 
|        public void setOrderId(Long orderId) { | 
|         this.orderId=orderId; | 
|     } | 
|         | 
|   | 
|   | 
|    | 
| } |