HistoryQuery.java 526 Bytes
package cn.fw.hestia.domain.vo;

import cn.fw.common.page.BasePageQuery;
import cn.fw.common.web.annotation.LoginContextField;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.ToString;

/**
 * @author : kurisu
 * @className : HistoryQuery
 * @description : 查询条件
 * @date: 2021-09-25 10:45
 */
@Data
@ToString(callSuper = true)
@EqualsAndHashCode(callSuper = true)
public class HistoryQuery extends BasePageQuery {

    @LoginContextField(LoginContextField.Name.USER_ID)
    private Long memberId;
}