ShyActivityDTO.java 1.4 KB
package com.cnlive.shenhe.dto;

import net.bytebuddy.implementation.bind.annotation.Default;
import org.springframework.beans.factory.annotation.Value;

import java.io.Serializable;

/**
 * @author Administrator
 * @author yanzhaowang
 * @create 2022-03-14 13:16
 */

public class ShyActivityDTO implements Serializable {


    private Integer pageNum = 1;

    private Integer pageSize = 10;

    private String activity;

    private Integer exempt_from_trial;

    public ShyActivityDTO(Integer pageNum, Integer pageSize, String activity, Integer exempt_from_trial) {
        this.pageNum = pageNum;
        this.pageSize = pageSize;
        this.activity = activity;
        this.exempt_from_trial = exempt_from_trial;
    }

    public ShyActivityDTO() {
    }

    public Integer getPageNum() {
        return pageNum;
    }

    public void setPageNum(Integer pageNum) {
        this.pageNum = pageNum;
    }

    public Integer getPageSize() {
        return pageSize;
    }

    public void setPageSize(Integer pageSize) {
        this.pageSize = pageSize;
    }

    public String getActivity() {
        return activity;
    }

    public void setActivity(String activity) {
        this.activity = activity;
    }

    public Integer getExempt_from_trial() {
        return exempt_from_trial;
    }

    public void setExempt_from_trial(Integer exempt_from_trial) {
        this.exempt_from_trial = exempt_from_trial;
    }
}