暂降事件
This commit is contained in:
@@ -0,0 +1,44 @@
|
||||
package com.njcn.csharmonic.param;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
*
|
||||
* Description:
|
||||
* Date: 2023/9/4 15:15【需求编号】
|
||||
*
|
||||
* @author clam
|
||||
* @version V1.0.0
|
||||
*/
|
||||
@Data
|
||||
@NoArgsConstructor
|
||||
public class CsEventUserQueryParam {
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* 用户id
|
||||
*/
|
||||
private String userId;
|
||||
|
||||
|
||||
/**
|
||||
* 事件id
|
||||
*/
|
||||
private String eventId;
|
||||
/**
|
||||
* 事件类型
|
||||
*/
|
||||
private List<String> target;
|
||||
|
||||
/**
|
||||
* 状态(0:未读取 1:已读取)
|
||||
*/
|
||||
private String status;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user