1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| package com.chinaztt.mes.warehouse.dto;
|
| import com.chinaztt.mes.warehouse.entity.PalletTransports;
| import io.swagger.annotations.ApiModelProperty;
| import lombok.Data;
|
| /**
| * @Description:
| * @Author: shz
| * @Date: 2022/5/25 8:58
| */
| @Data
| public class PalletTransportsDTO extends PalletTransports {
|
| @ApiModelProperty(value = "申请员工")
| private String staffName;
| }
|
|