26 lines
476 B
Java
26 lines
476 B
Java
package com.example.caseData.dto.caseLabel;
|
||
|
||
import com.fasterxml.jackson.annotation.JsonProperty;
|
||
import lombok.Data;
|
||
|
||
@Data
|
||
public class GetCaseLabelDto {
|
||
/**
|
||
* app唯一标识
|
||
*/
|
||
@JsonProperty("app_iden")
|
||
private String appIden;
|
||
|
||
/**
|
||
* 标签名称
|
||
*/
|
||
@JsonProperty("label_name")
|
||
private String labelName;
|
||
|
||
/**
|
||
* 是否存在子标签,0:否 1:是
|
||
*/
|
||
@JsonProperty("is_sub")
|
||
private Integer isSub = 0;
|
||
}
|