Commit c111a31f by liyanlin

fix

parent b44be65f
......@@ -3,6 +3,7 @@ package com.blt.other.module.cost.dto.request;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
import java.time.LocalDate;
......@@ -47,11 +48,11 @@ public class CheckCostListReq {
private Integer createUserId;
@ApiModelProperty("费用单创建时间")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@DateTimeFormat(pattern = "yyyy-MM-dd")
private LocalDate beginTime;
@ApiModelProperty("费用单创建时间")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@DateTimeFormat(pattern = "yyyy-MM-dd")
private LocalDate endTime;
@ApiModelProperty("费用单-收款/付款人(创建人)")
......
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