xiangpei
2025-05-29 817c7de04cb6b74164a42ed0e6050ae5b91b0ef1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package cn.lili.modules.lmk.domain.vo;
 
import cn.lili.base.AbsVo;
import cn.lili.modules.lmk.domain.entity.CustomerTagRef;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.springframework.beans.BeanUtils;
import org.springframework.lang.NonNull;
 
@Data
@ApiModel(value = "客户标签中间表响应数据", description = "客户标签中间表响应数据")
public class CustomerTagRefVO  extends AbsVo {
    /**  */
    @ApiModelProperty("")
    private String customerId;
 
    /**  */
    @ApiModelProperty("")
    private String customerTagId;
 
    public static CustomerTagRefVO getVoByEntity(@NonNull CustomerTagRef entity, CustomerTagRefVO vo) {
        if(vo == null) {
            vo = new CustomerTagRefVO();
        }
        BeanUtils.copyProperties(entity, vo);
        return vo;
    }
}