xiangpei
8 天以前 cc1bab39263e90069ccef7139f71b2a4061780d1
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
package cn.lili.modules.lmk.domain.vo;
 
import cn.lili.base.AbsVo;
 
import java.util.List;
 
import cn.lili.modules.lmk.domain.entity.CustomerTag;
import org.springframework.lang.NonNull;
import org.springframework.beans.BeanUtils;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import java.util.Date;
 
/**
 * 展示
 *
 * @author zxl
 * @since 2025-05-14
 */
@Data
@ApiModel(value = "响应数据", description = "响应数据")
public class CustomerTagVO extends AbsVo {
 
    /**  */
    @ApiModelProperty("标签名称")
    private String tagName;
 
    /**  */
    @ApiModelProperty("创建方式")
    private String createType;
 
 
 
    public static CustomerTagVO getVoByEntity(@NonNull CustomerTag entity, CustomerTagVO vo) {
        if(vo == null) {
            vo = new CustomerTagVO();
        }
        BeanUtils.copyProperties(entity, vo);
        return vo;
    }
 
}