
com.bixuebihui.test.cmd.TEduSearchCmd Maven / Gradle / Ivy
package com.bixuebihui.test.cmd;
import java.sql.*;
import io.swagger.annotations.ApiModelProperty;
import jakarta.validation.constraints.*;
/*
* TEduSearchCmd
*
* Notice! Automatically generated file!
* Do not edit the pojo and dal packages,use `maven tablegen:gen`!
* Code Generator originally by J.A.Carter
* Modified by Xing Wanxiang 2008-2023
* email: [email protected]
*/
/**
* @author xwx
* https://stackoverflow.com/questions/26612404/spring-map-get-request-parameters-to-pojo-automatically/26612778#26612778
*/
public class TEduSearchCmd {
/**
* id 这里是id!
* change type of Integer to List will generate 'in' sql condition.
*/
@ApiModelProperty("这里是id!")
protected Integer id;
/**
* degree 这里是名称!
* NotNull, default value: NULL
* change type of String to List will generate 'in' sql condition.
*/
@ApiModelProperty("这里是名称!")
protected String degree;
public void setId(Integer id)
{
this.id = id;
}
public Integer getId()
{
return this.id;
}
public void setDegree(String degree)
{
this.degree = degree;
}
public String getDegree()
{
return this.degree;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy