Commit ae689699 authored by 赵啸非's avatar 赵啸非

添加级联

parent 98319ab3
Pipeline #2854 canceled with stages
package com.mortals.xhx.common.pdu.gen;
import com.alibaba.fastjson.annotation.JSONField;
import lombok.Data;
/**
* 配置
*
* @author: zxfei
* @date: 2021/10/15 10:27
*/
@Data
public class Props {
@JSONField(name="props")
private Props props;
@JSONField(name="children")
private String children;
@JSONField(name="multiple")
private Boolean multiple;
@JSONField(name="label")
private String label;
@JSONField(name="value")
private String value;
}
\ No newline at end of file
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