fix
Helius
2021-07-07 1a3edbd0f4f581534485e93cbf10a83a16390779
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;
 
}