Administrator
yesterday 262d75a02882c218b99be85d737c95324c7131d4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package cc.mrbird.febs.mall.dto.clothes;
 
import io.swagger.annotations.ApiModel;
import lombok.Data;
 
@Data
@ApiModel(value = "AdminClothesDeliverGoodsDto", description = "运费模板更新参数类")
public class AdminClothesDeliverGoodsDto {
 
 
    private Long id;
 
    private String expressNo;
 
    private String expressCom;
 
    private String expressCode;
 
    private String orderNo;
}