From b24677ee3bc1a1605088c4ddfae2bf35a4affbb6 Mon Sep 17 00:00:00 2001 From: lishouyi <linlangsur163@163.com> Date: 星期四, 25 五月 2023 18:54:05 +0800 Subject: [PATCH] 卡车公司——财务——上传发票信息接口 --- src/main/java/com/stylefeng/guns/modular/system/model/ShouldPayVo.java | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/stylefeng/guns/modular/system/model/ShouldPayVo.java b/src/main/java/com/stylefeng/guns/modular/system/model/ShouldPayVo.java index 2c0c31f..b3742cb 100644 --- a/src/main/java/com/stylefeng/guns/modular/system/model/ShouldPayVo.java +++ b/src/main/java/com/stylefeng/guns/modular/system/model/ShouldPayVo.java @@ -1,5 +1,7 @@ package com.stylefeng.guns.modular.system.model; +import com.fasterxml.jackson.databind.annotation.JsonSerialize; +import com.fasterxml.jackson.databind.ser.std.ToStringSerializer; import io.swagger.annotations.ApiModelProperty; import lombok.Data; @@ -11,6 +13,9 @@ @Data public class ShouldPayVo { @ApiModelProperty("订单id") + @JsonSerialize( + using = ToStringSerializer.class + ) private Long id; private Integer userId; private String userName; -- Gitblit v1.7.1