| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- package cn.com.goldenwater.dcproj.param;
- import cn.com.goldenwater.core.param.PageParam;
- import io.swagger.annotations.ApiParam;
- import java.util.Date;
- import java.io.Serializable;
- import io.swagger.annotations.ApiModelProperty;
- /**
- * GwRelMenuApiParam
- *
- * @author lune
- * @date 2019-12-25
- */
- public class GwRelMenuApiParam extends PageParam implements Serializable {
- @ApiModelProperty("主键id")
- private String id;
- @ApiModelProperty("菜单id")
- private String menuId;
- @ApiModelProperty("接口id")
- private String apiId;
- public GwRelMenuApiParam() {
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getMenuId() {
- return menuId;
- }
- public void setMenuId(String menuId) {
- this.menuId = menuId;
- }
- public String getApiId() {
- return apiId;
- }
- public void setApiId(String apiId) {
- this.apiId = apiId;
- }
- }
|