Commit 3506475b authored by lcl's avatar lcl

u

parent da99fc9d
package com.dsk.system.domain.business.dto;
import com.dsk.common.core.domain.BaseEntity;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
......@@ -14,7 +15,7 @@ import java.util.Map;
*/
@Data
@NoArgsConstructor
public class BusinessSearchDto implements Serializable {
public class BusinessSearchDto extends BaseEntity implements Serializable {
/**
* 用户id
*/
......@@ -24,18 +25,6 @@ public class BusinessSearchDto implements Serializable {
*/
private Integer status;
/**
* 数据权限
*/
private Map<String, Object> params;
public Map<String, Object> getParams() {
if (params == null) {
params = new HashMap<>();
}
return params;
}
public BusinessSearchDto(Long userId) {
this.userId = userId;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment