This commit is contained in:
阿沐 2024-06-25 17:18:35 +08:00
parent 7da220128c
commit fb0529a7fe
2 changed files with 23 additions and 23 deletions

View File

@ -1,4 +1,4 @@
package net.maku.message.query; package net.maku.system.query;
import io.swagger.v3.oas.annotations.media.Schema; import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data; import lombok.Data;
@ -6,16 +6,16 @@ import lombok.EqualsAndHashCode;
import net.maku.framework.common.query.Query; import net.maku.framework.common.query.Query;
/** /**
* 短信日志查询 * 短信日志查询
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
*/ */
@Data @Data
@EqualsAndHashCode(callSuper = false) @EqualsAndHashCode(callSuper = false)
@Schema(description = "短信日志查询") @Schema(description = "短信日志查询")
public class SmsLogQuery extends Query { public class SysSmsLogQuery extends Query {
@Schema(description = "平台ID") @Schema(description = "手机号")
private Long platformId; private String mobile;
@Schema(description = "平台类型") @Schema(description = "平台类型")
private Integer platform; private Integer platform;