init
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
package com.ruoyi.cai.dto.commom.setting;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class CateSelectVo {
|
||||
private Integer cateId;
|
||||
private String text;
|
||||
|
||||
public CateSelectVo(Integer cateId, String text) {
|
||||
this.cateId = cateId;
|
||||
this.text = text;
|
||||
}
|
||||
|
||||
public CateSelectVo() {
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user