All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.nbsaas.boot.system.api.domain.request.DictSearchRequest Maven / Gradle / Ivy

There is a newer version: 1.1.5-2024
Show newest version
package com.nbsaas.boot.system.api.domain.request;

import com.nbsaas.boot.rest.filter.Operator;
import com.nbsaas.boot.rest.filter.Search;
import com.nbsaas.boot.rest.request.PageRequest;
import lombok.*;
import java.io.Serializable;
import java.util.Date;
import java.math.BigDecimal;

/**
* 搜索bean
*/
@Getter
@Setter
@EqualsAndHashCode(callSuper = true)
@ToString(callSuper = true)
public class DictSearchRequest   extends PageRequest implements Serializable {

/**
* 序列化参数
*/
private static final long serialVersionUID = 1L;



            /**
            * 主键id
            **/
            @Search(name = "id",operator = Operator.eq)
            private Long id;

            /**
            * 字典名称
            **/
            @Search(name = "title",operator = Operator.like)
            private String title;

            /**
            * 字典key
            **/
            @Search(name = "dictKey",operator = Operator.like)
            private String dictKey;



}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy