石广澎
2024-01-02 0cd1631ceaa93e6483908fd692d2cb693b85324b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
package com.consum.base.pojo;
 
import com.walker.web.param.ParamRequest;
 
public class BaseCategoryParam extends ParamRequest {
    private Long fatherCategoryId;
    private String categoryName;
    /**
     * 分裂类别:A,B,C
     */
    private String classification;
    private Integer orderNumber;
    private Integer states;
 
    public Long getFatherCategoryId() {
        return fatherCategoryId;
    }
 
    public void setFatherCategoryId(Long fatherCategoryId) {
        this.fatherCategoryId = fatherCategoryId;
    }
 
    public String getCategoryName() {
        return categoryName;
    }
 
    public void setCategoryName(String categoryName) {
        this.categoryName = categoryName;
    }
 
    public String getClassification() {
        return classification;
    }
 
    public void setClassification(String classification) {
        this.classification = classification;
    }
 
    public Integer getOrderNumber() {
        return orderNumber;
    }
 
    public void setOrderNumber(Integer orderNumber) {
        this.orderNumber = orderNumber;
    }
 
    public Integer getStates() {
        return states;
    }
 
    public void setStates(Integer states) {
        this.states = states;
    }
}