1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| package com.mzl.flower.dto.response.payment;
|
| import io.swagger.annotations.ApiModelProperty;
| import lombok.Data;
|
| import java.io.Serializable;
|
| @Data
| public class SupplierNumDTO implements Serializable {
| @ApiModelProperty(value = "供应商id")
| private Long supplierId;
|
| @ApiModelProperty(value = "数量")
| private Integer num;
|
|
| }
|
|