| | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.fasterxml.jackson.annotation.JsonIgnoreProperties; |
| | | import lombok.AllArgsConstructor; |
| | | import lombok.Data; |
| | | import lombok.NoArgsConstructor; |
| | |
| | | @Data |
| | | @AllArgsConstructor |
| | | @NoArgsConstructor |
| | | @JsonIgnoreProperties(ignoreUnknown = true) |
| | | public class PageParam { |
| | | |
| | | @TableId |
| | | private Integer id; |
| | | private String param; |
| | | @TableField("paramEnUs") |
| | | private String paramEnUs; |
| | | private Integer status; |
| | | @TableField("categoryId") |
| | | private Integer categoryId; |
| | |
| | | public void setCategoryId(Integer categoryId) { |
| | | this.categoryId = categoryId; |
| | | } |
| | | |
| | | public String getParamEnUs() { |
| | | return paramEnUs; |
| | | } |
| | | |
| | | public void setParamEnUs(String paramEnUs) { |
| | | this.paramEnUs = paramEnUs; |
| | | } |
| | | } |