Merge branch 'dev' of http://47.97.8.94:19527/yj/zn-cloud into dev-评论
This commit is contained in:
commit
252bf98ea0
@ -1,5 +1,6 @@
|
||||
package cn.iocoder.yudao.module.bpm.controller.admin.oa.vo.procurepay;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
import org.springframework.format.annotation.DateTimeFormat;
|
||||
@ -7,6 +8,7 @@ import org.springframework.format.annotation.DateTimeFormat;
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
import static cn.iocoder.yudao.framework.common.util.date.DateUtils.FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND;
|
||||
import static cn.iocoder.yudao.framework.common.util.date.DateUtils.TIME_ZONE_DEFAULT;
|
||||
|
||||
@Schema(description = "管理后台 - 采购收款明细 Response VO")
|
||||
@Data
|
||||
@ -45,6 +47,7 @@ public class BpmOAProcurePayItemRespVO {
|
||||
|
||||
@Schema(description = "期望交付日期")
|
||||
@DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
|
||||
@JsonFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND, timezone = TIME_ZONE_DEFAULT)
|
||||
private LocalDateTime expectedDeliveryDate;
|
||||
|
||||
@Schema(description = "备注")
|
||||
@ -56,4 +59,6 @@ public class BpmOAProcurePayItemRespVO {
|
||||
@Schema(description = "采购总金额大写")
|
||||
private String totalMoneyChinese;
|
||||
|
||||
@Schema(description = "采购详情json数据")
|
||||
private String procureDetailJson;
|
||||
}
|
@ -1,13 +1,18 @@
|
||||
package cn.iocoder.yudao.module.bpm.controller.admin.oa.vo.procurepay;
|
||||
|
||||
import cn.iocoder.yudao.module.bpm.controller.admin.upload.UploadUserFile;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
import org.springframework.format.annotation.DateTimeFormat;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.time.LocalDateTime;
|
||||
import java.util.List;
|
||||
|
||||
import static cn.iocoder.yudao.framework.common.util.date.DateUtils.FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND;
|
||||
import static cn.iocoder.yudao.framework.common.util.date.DateUtils.TIME_ZONE_DEFAULT;
|
||||
|
||||
@Schema(description = "管理后台 - 采购支付 Response VO")
|
||||
@Data
|
||||
public class BpmOAProcurePayRespVO {
|
||||
@ -22,6 +27,8 @@ public class BpmOAProcurePayRespVO {
|
||||
private String reason;
|
||||
|
||||
@Schema(description = "支付日期")
|
||||
@DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
|
||||
@JsonFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND, timezone = TIME_ZONE_DEFAULT)
|
||||
private LocalDateTime payTime;
|
||||
|
||||
@Schema(description = "采购付款总金额", requiredMode = Schema.RequiredMode.REQUIRED)
|
||||
|
@ -10,6 +10,8 @@ import java.math.BigDecimal;
|
||||
import org.springframework.format.annotation.DateTimeFormat;
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
import static cn.iocoder.yudao.framework.common.util.date.DateUtils.FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND;
|
||||
|
||||
@Schema(description = "管理后台 - 采购支付新增/修改 Request VO")
|
||||
@Data
|
||||
public class BpmOAProcurePaySaveReqVO {
|
||||
@ -25,6 +27,7 @@ public class BpmOAProcurePaySaveReqVO {
|
||||
private String reason;
|
||||
|
||||
@Schema(description = "支付日期")
|
||||
@DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
|
||||
private LocalDateTime payTime;
|
||||
|
||||
@Schema(description = "采购付款总金额", requiredMode = Schema.RequiredMode.REQUIRED)
|
||||
|
@ -18,6 +18,7 @@
|
||||
b.reason,
|
||||
b.procure_type,
|
||||
b.expected_delivery_date,
|
||||
b.procure_detail_json as procureDetailJson,
|
||||
b.remarks,
|
||||
b.total_money,
|
||||
b.total_money_chinese
|
||||
|
@ -125,8 +125,8 @@ wx:
|
||||
miniapp: # 小程序配置(必填),参见 https://github.com/Wechat-Group/WxJava/blob/develop/spring-boot-starters/wx-java-miniapp-spring-boot-starter/README.md 文档
|
||||
# appid: wx62056c0d5e8db250
|
||||
# secret: 333ae72f41552af1e998fe1f54e1584a
|
||||
appid: wx63c280fe3248a3e7 # wenhualian的接口测试号
|
||||
secret: 6f270509224a7ae1296bbf1c8cb97aed
|
||||
appid: wxea777d1b1e12eb32 # wenhualian的接口测试号
|
||||
secret: 2db58956286099e58e959fa537e046b0
|
||||
config-storage:
|
||||
type: RedisTemplate # 采用 RedisTemplate 操作 Redis,会自动从 Spring 中获取
|
||||
key-prefix: wa # Redis Key 的前缀
|
||||
|
@ -143,8 +143,8 @@ wx:
|
||||
miniapp: # 小程序配置(必填),参见 https://github.com/Wechat-Group/WxJava/blob/develop/spring-boot-starters/wx-java-miniapp-spring-boot-starter/README.md 文档
|
||||
# appid: wx62056c0d5e8db250
|
||||
# secret: 333ae72f41552af1e998fe1f54e1584a
|
||||
appid: wx2919e237e6018bea # wenhualian的接口测试号
|
||||
secret: ad7ab17918f6defa85a9677778eb7780
|
||||
appid: wxea777d1b1e12eb32 # wenhualian的接口测试号
|
||||
secret: 2db58956286099e58e959fa537e046b0
|
||||
config-storage:
|
||||
type: RedisTemplate # 采用 RedisTemplate 操作 Redis,会自动从 Spring 中获取
|
||||
key-prefix: wa # Redis Key 的前缀
|
||||
|
Loading…
Reference in New Issue
Block a user