xiaoyong931011
2021-07-07 d0c47393cbf57134bd539c7cc0804c9c4cddef85
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.xzx.gc.order.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author wzy
 * @date 2021-06-28
 **/
@Data
@ApiModel(value = "JhyOrderConfirmItemsDto")
public class JhyOrderConfirmItemsDto {
 
    @ApiModelProperty(value = "id")
    private Long id;
 
    @ApiModelProperty(value = "重量")
    private String weight;
 
}