李林
2023-10-07 658d4927d468c47208fd012d9128b09249c07eff
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package com.chinaztt.mes.warehouse.dto;
 
import com.chinaztt.mes.warehouse.entity.PalletTransportsMaterial;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @Description:
 * @Author: shz
 * @Date: 2022/5/25 9:26
 */
@Data
public class PalletTransportsMaterialDTO extends PalletTransportsMaterial {
    @ApiModelProperty(value = "零件号")
    private String partNo;
 
    @ApiModelProperty(value = "零件描述")
    private String partDesc;
 
    @ApiModelProperty(value = "计量单位")
    private String unit;
 
    @ApiModelProperty(value = "零件名称")
    private String partName;
}