xiangpei
2025-06-12 baa730b5518b5f73c14d0af5868641299b3fe2e4
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
package cn.lili.modules.message.entity.vos;
 
import cn.lili.modules.message.entity.enums.MessageStatusEnum;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
 
/**
 * 店铺消息查询
 *
 * @author Chopper
 * @since 2020/12/2 17:50
 */
@Data
@ApiModel(value = "消息")
public class StoreMessageQueryVO {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * @see MessageStatusEnum
     */
    @ApiModelProperty(value = "状态")
    private String status;
 
    @ApiModelProperty(value = "消息id")
    private String messageId;
 
    @ApiModelProperty(value = "商家id")
    private String storeId;
 
}