6 changed files with 138 additions and 5 deletions
@ -0,0 +1,48 @@ |
|||
package com.epmet.dto.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.List; |
|||
|
|||
/** |
|||
* 客户分类列表 |
|||
* |
|||
* @Author ZY |
|||
* @DateTime 2021/03/23 |
|||
*/ |
|||
@Data |
|||
public class CustomerCategoryResultDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 4769136806332933579L; |
|||
|
|||
/** |
|||
* 分类Id |
|||
*/ |
|||
private String categoryId; |
|||
|
|||
/** |
|||
* 分类名称 |
|||
*/ |
|||
private String categoryName; |
|||
|
|||
/** |
|||
* 排序 |
|||
*/ |
|||
private Integer sort; |
|||
|
|||
/** |
|||
* 是否禁用(enable:启用 disable:禁用) |
|||
*/ |
|||
private String isDisable; |
|||
|
|||
/** |
|||
* 二级分类 |
|||
*/ |
|||
private List<CustomerCategoryResultDTO> children; |
|||
|
|||
/** |
|||
* pid |
|||
*/ |
|||
private String pid; |
|||
} |
Loading…
Reference in new issue