package com.mzl.flower.dto.request.wallet;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
import java.time.LocalDate;
|
|
@Data
|
public class QueryWalletBillDTO {
|
|
@ApiModelProperty(value = "供应商Id")
|
private Long supplierId;
|
//
|
// @ApiModelProperty(value = "供应商名称")
|
// private String supplierName;
|
|
@ApiModelProperty(value = "开始日期")
|
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
private LocalDate startDate;
|
|
@ApiModelProperty(value = "结束日期")
|
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
private LocalDate endDate;
|
|
|
}
|