2025-06-11 17:58:56 +08:00

26 lines
476 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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;
}