15 changed files with 129 additions and 11 deletions
@ -0,0 +1,14 @@ |
|||||
|
package com.yxt.yyth.api.lpkreserveorder; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
/** |
||||
|
* @author wangpengfei |
||||
|
* @date 2023/11/23 14:34 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class Goods { |
||||
|
private double goodsNumber;//数量
|
||||
|
private String goodsSid;//商品sid
|
||||
|
|
||||
|
} |
@ -1,8 +1,22 @@ |
|||||
package com.yxt.yyth.api.lpkreserveorder; |
package com.yxt.yyth.api.lpkreserveorder; |
||||
|
|
||||
|
import com.yxt.common.core.dto.Dto; |
||||
|
import com.yxt.yyth.api.lpkgiftcard.GoodsVo; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.util.List; |
||||
|
|
||||
/** |
/** |
||||
* @author wangpengfei |
* @author wangpengfei |
||||
* @date 2023/11/23 10:29 |
* @date 2023/11/23 10:29 |
||||
*/ |
*/ |
||||
public class LpkReserveOrderDto { |
@Data |
||||
|
public class LpkReserveOrderDto implements Dto { |
||||
|
private String cardSid;//礼包卡sid
|
||||
|
private String sid; |
||||
|
private String value; |
||||
|
private String storeSid;//发放点
|
||||
|
private String customerSid;//客户sid
|
||||
|
private String reserveDate;//发放时间
|
||||
|
private List<GoodsVo> goodsVos; |
||||
} |
} |
||||
|
@ -1,8 +1,14 @@ |
|||||
package com.yxt.yyth.api.lpkreserveordergoods; |
package com.yxt.yyth.api.lpkreserveordergoods; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
/** |
/** |
||||
* @author wangpengfei |
* @author wangpengfei |
||||
* @date 2023/11/23 10:29 |
* @date 2023/11/23 10:29 |
||||
*/ |
*/ |
||||
|
@Data |
||||
public class LpkReserveOrderGoodsDto { |
public class LpkReserveOrderGoodsDto { |
||||
|
private String cardSid; |
||||
|
private String goodsSid; |
||||
|
private String goodsNumber; |
||||
} |
} |
||||
|
Loading…
Reference in new issue