|
|
@@ -8,6 +8,7 @@ import java.time.LocalDate;
|
|
|
import lombok.Data;
|
|
|
import lombok.EqualsAndHashCode;
|
|
|
import org.hibernate.validator.constraints.Length;
|
|
|
+import org.springframework.format.annotation.DateTimeFormat;
|
|
|
|
|
|
/**
|
|
|
* 检测表-关节式分相
|
|
|
@@ -50,6 +51,7 @@ public class BusJceb extends BaseEntity{
|
|
|
private String xingbieText;
|
|
|
|
|
|
@ApiModelProperty(value = "检查日期")
|
|
|
+ @DateTimeFormat(pattern = "yyyy-MM-dd")
|
|
|
@JsonFormat(pattern="yyyy-MM-dd")
|
|
|
private LocalDate operationDate;
|
|
|
|