5 changed files with 51 additions and 2 deletions
@ -0,0 +1,31 @@ |
|||||
|
package com.qs.serve.modules.oms.entity.bo; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.util.List; |
||||
|
|
||||
|
/** |
||||
|
* @author YenHex |
||||
|
* @since 2023/10/27 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class SysFlowUserBo { |
||||
|
|
||||
|
/** |
||||
|
* 离职用户 |
||||
|
*/ |
||||
|
String userId; |
||||
|
|
||||
|
/** |
||||
|
* 继承人 |
||||
|
*/ |
||||
|
String extendUserId; |
||||
|
|
||||
|
/** |
||||
|
* 业务类型: |
||||
|
* 1-费用及核销 |
||||
|
* 2-政策 |
||||
|
* 3-订单 |
||||
|
*/ |
||||
|
Integer targetTypeNum; |
||||
|
} |
Loading…
Reference in new issue