44 lines
829 B
Java
44 lines
829 B
Java
package com.example.caseData.dto.caseClinicalArticleLabel;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
import lombok.Data;
|
|
import java.time.LocalDateTime;
|
|
|
|
@Data
|
|
public class CaseClinicalArticleLabelDto {
|
|
/**
|
|
* 主键id
|
|
*/
|
|
@JsonProperty("article_label_id")
|
|
private Long articleLabelId;
|
|
|
|
/**
|
|
* 临床文章id
|
|
*/
|
|
@JsonProperty("article_id")
|
|
private Long articleId;
|
|
|
|
/**
|
|
* app唯一标识
|
|
*/
|
|
@JsonProperty("app_iden")
|
|
private String appIden;
|
|
|
|
/**
|
|
* 标签名称
|
|
*/
|
|
@JsonProperty("label_name")
|
|
private String labelName;
|
|
|
|
/**
|
|
* 创建时间
|
|
*/
|
|
@JsonProperty("created_at")
|
|
private LocalDateTime createdAt;
|
|
|
|
/**
|
|
* 修改时间
|
|
*/
|
|
@JsonProperty("updated_at")
|
|
private LocalDateTime updatedAt;
|
|
} |