办学质量监测教学评价系统
ageer
2025-04-08 5a5a48e153c4f161a4e01c8ec4b4b0ec8f5fa1d2
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
package org.ruoyi.system.domain.vo;
 
import org.ruoyi.system.domain.ChatAppStore;
import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
import com.alibaba.excel.annotation.ExcelProperty;
 
import io.github.linpeilie.annotations.AutoMapper;
import lombok.Data;
 
import java.io.Serial;
import java.io.Serializable;
 
 
 
 
/**
 * 应用商店视图对象 chat_app_store
 *
 * @author ageerle
 * @date 2025-04-08
 */
@Data
@ExcelIgnoreUnannotated
@AutoMapper(target = ChatAppStore.class)
public class ChatAppStoreVo implements Serializable {
 
    @Serial
    private static final long serialVersionUID = 1L;
 
    /**
     * id
     */
    @ExcelProperty(value = "id")
    private Long id;
 
    /**
     * 名称
     */
    @ExcelProperty(value = "名称")
    private String name;
 
    /**
     * 描述
     */
    @ExcelProperty(value = "描述")
    private String description;
 
    /**
     * logo
     */
    @ExcelProperty(value = "logo")
    private String avatar;
 
    /**
     * 地址
     */
    @ExcelProperty(value = "地址")
    private String appUrl;
 
    /**
     * 备注
     */
    @ExcelProperty(value = "备注")
    private String remark;
 
 
}