7 changed files with 122 additions and 21 deletions
@ -0,0 +1,40 @@ |
|||
package com.epmet.dto.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @author zhaoqifeng |
|||
* @dscription |
|||
* @date 2020/7/29 13:36 |
|||
*/ |
|||
@Data |
|||
public class CategoryResultDTO implements Serializable { |
|||
private static final long serialVersionUID = -5691303280428707533L; |
|||
|
|||
/** |
|||
* 一级类目名称 |
|||
*/ |
|||
private String firstClass; |
|||
/** |
|||
* 二级类目名称 |
|||
*/ |
|||
private String secondClass; |
|||
/** |
|||
* 三级类目名称 |
|||
*/ |
|||
private String thirdClass; |
|||
/** |
|||
* 一级类目的ID编号 |
|||
*/ |
|||
private String firstId; |
|||
/** |
|||
* 二级类目的ID编号 |
|||
*/ |
|||
private String secondId; |
|||
/** |
|||
* 三级类目的ID编号 |
|||
*/ |
|||
private String thirdId; |
|||
} |
Loading…
Reference in new issue