|
@@ -4,10 +4,12 @@ import com.alibaba.excel.annotation.ExcelIgnore;
|
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
import com.huaxu.entity.OperateLogEntity;
|
|
|
+import com.huaxu.model.ProgramItem;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
import lombok.Data;
|
|
|
|
|
|
import java.util.Date;
|
|
|
+import java.util.List;
|
|
|
|
|
|
/**
|
|
|
* @description
|
|
@@ -44,17 +46,7 @@ public class OperateLogDto extends OperateLogEntity {
|
|
|
@ApiModelProperty(value ="分页查询:条数,默认 30")
|
|
|
private Integer pageSize;
|
|
|
|
|
|
- public Integer getPageNum() {
|
|
|
- if(pageNum == null){
|
|
|
- return 1;
|
|
|
- }
|
|
|
- return pageNum;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getPageSize() {
|
|
|
- if(pageSize == null){
|
|
|
- return 30;
|
|
|
- }
|
|
|
- return pageSize;
|
|
|
- }
|
|
|
+ @ExcelIgnore
|
|
|
+ @ApiModelProperty(value ="权限",hidden = true)
|
|
|
+ private List<ProgramItem> programItems;
|
|
|
}
|