peng
2025-10-27 2a7b0a64b14b22ec45f8a0f6e4764bc3cd16919c
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
package cn.lili.modules.lmk.domain.vo;
 
import cn.lili.base.AbsVo;
import cn.lili.modules.lmk.domain.entity.StoreTagRef;
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 StoreTagRefVO extends AbsVo {
    /**  */
    @ApiModelProperty("")
    private String storeId;
 
    /**  */
    @ApiModelProperty("")
    private String storeTagId;
 
    private String tagName;
 
    public static StoreTagRefVO getVoByEntity(@NonNull StoreTagRef entity, StoreTagRefVO vo) {
        if(vo == null) {
            vo = new StoreTagRefVO();
        }
        BeanUtils.copyProperties(entity, vo);
        return vo;
    }
}