zxl
2025-10-16 d17705193d41b0e7c49da3ec8f5667668bafe5da
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
package cn.lili.modules.lmk.domain.vo;
 
 
import java.util.List;
 
import cn.lili.base.AbsVo;
import cn.lili.modules.lmk.domain.entity.StoreTag;
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-10-09
 */
@Data
@ApiModel(value = "响应数据", description = "响应数据")
public class StoreTagVO extends AbsVo {
 
    /** 标签名 */
    @ApiModelProperty("标签名")
    private String tagName;
 
    private Boolean deleteFlag;
 
    public static StoreTagVO getVoByEntity(@NonNull StoreTag entity, StoreTagVO vo) {
        if(vo == null) {
            vo = new StoreTagVO();
        }
        BeanUtils.copyProperties(entity, vo);
        return vo;
    }
 
}