123456789101112131415161718 |
- package com.hrsoft.edi.stub.wt;
- import com.qimen.api.QimenResponse;
- import lombok.Data;
- /**
- * @description: 万通通用应答
- * @author: konglingbin
- * @date 2024/9/6 15:56
- */
- @Data
- public class WTWcsResponse extends QimenResponse {
- String code;
- String message;
- }
|