Merge pull request 'v1.0.14' (#22) from dev into master
Reviewed-on: #22
This commit was merged in pull request #22.
This commit is contained in:
@@ -0,0 +1,22 @@
|
|||||||
|
package com.imyeyu.api.modules.gao.vo;
|
||||||
|
|
||||||
|
import com.fasterxml.jackson.annotation.JsonView;
|
||||||
|
import com.imyeyu.api.modules.gao.entity.GaoEventRecord;
|
||||||
|
import com.imyeyu.spring.bean.PageResult;
|
||||||
|
import com.imyeyu.spring.util.ResponseView;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.EqualsAndHashCode;
|
||||||
|
|
||||||
|
///
|
||||||
|
/// 登记事件记录分页查询结果
|
||||||
|
///
|
||||||
|
/// @author Codex
|
||||||
|
/// @since 2026-08-14
|
||||||
|
@Data
|
||||||
|
@EqualsAndHashCode(callSuper = true)
|
||||||
|
public class GaoEventRecordPageResult extends PageResult<GaoEventRecord> {
|
||||||
|
|
||||||
|
/// 指定单个数值事件的登记数值合计,未指定单个 NUMBER 事件时为空
|
||||||
|
@JsonView(ResponseView.Public.class)
|
||||||
|
private Long numberValueTotal;
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user