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

com.nb6868.onex.sys.dto.MsgTplQueryForm Maven / Gradle / Ivy

There is a newer version: 4.2.16
Show newest version
package com.nb6868.onex.sys.dto;

import com.nb6868.onex.common.jpa.Query;
import com.nb6868.onex.common.pojo.BasePageForm;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;

@Data
@EqualsAndHashCode(callSuper = false)
@ApiModel(value = "消息模板查询")
public class MsgTplQueryForm extends BasePageForm {

    @Query(blurryType = Query.BlurryType.OR, type = Query.Type.LIKE, column="name,title,content")
    @ApiModelProperty("关键词搜索")
    private String search;

    @Query
    @ApiModelProperty("编码")
    private String code;

    @Query
    @ApiModelProperty("类型")
    private Integer type;

    @Query
    @ApiModelProperty("租户编码")
    private String tenantCode;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy