提交 | 用户 | age | ||
ec10c8 | 1 | package com.hz.his.dto.order; |
C | 2 | |
3 | import lombok.Data; | |
4 | ||
5 | /** | |
6 | * 订单初始化实体 | |
7 | */ | |
8 | @Data | |
9 | public class OrderInitVo { | |
10 | ||
11 | /**订单标识*/ | |
12 | private String orderId; | |
13 | ||
cc4383 | 14 | public OrderInitVo() { |
A | 15 | } |
16 | ||
17 | public OrderInitVo(String orderId) { | |
18 | this.orderId = orderId; | |
19 | } | |
ec10c8 | 20 | } |