dto优化

This commit is contained in:
dzl 2025-05-15 10:49:01 +08:00
parent 2a463770db
commit 8afc55ca65

View File

@ -1,8 +1,10 @@
package com.cdzy.payment.model.dto;
import com.alibaba.fastjson2.JSONArray;
import lombok.Data;
import java.time.LocalDateTime;
import java.util.List;
/**
* @author:Ding
* @ClassName:ReqRefundDto
@ -32,5 +34,5 @@ public class ReqRefundDto {
/**
* 退款时间
*/
private JSONArray refundTime;
private List<LocalDateTime> refundTime;
}