fix
Helius
2021-07-16 3f6f8756dbaa89163d318670daa9f79d9816b5d8
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;
 
}