feat: 1.美团团购券相关接口

This commit is contained in:
张松
2024-11-26 15:26:07 +08:00
parent 94285f68d0
commit 2d65fc817c
25 changed files with 784 additions and 4 deletions

View File

@@ -0,0 +1,11 @@
package com.chaozhanggui.system.cashierservice.resp;
import lombok.Data;
@Data
public class PhpCommonResp<T> {
private String code;
private String msg;
private long time;
private T data;
}