doc 描述优化

This commit is contained in:
bootx
2024-06-02 23:24:10 +08:00
parent 0c8bebb080
commit 8752cd11df
3 changed files with 6 additions and 4 deletions

View File

@@ -1,7 +1,6 @@
package cn.daxpay.single.result.sync;
import cn.daxpay.single.code.PaySyncStatusEnum;
import cn.daxpay.single.code.RefundSyncStatusEnum;
import cn.daxpay.single.result.PaymentCommonResult;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
@@ -24,7 +23,6 @@ public class PaySyncResult extends PaymentCommonResult {
/**
* 支付网关同步状态
* @see PaySyncStatusEnum
* @see RefundSyncStatusEnum
*/
@Schema(description = "同步状态")
private String status = FAIL.getCode();

View File

@@ -22,7 +22,7 @@ import java.time.LocalDateTime;
@EqualsAndHashCode(callSuper = true)
@Data
@Accessors(chain = true)
@DbTable(comment = "对账-第三方交易明细")
@DbTable(comment = "对账-通道交易明细")
@TableName("pay_reconcile_trade_detail")
public class ReconcileTradeDetail extends MpCreateEntity implements EntityBaseFunction<ReconcileTradeDetailDto> {