huminmin
6 天以前 3d6c572e5027273cf841883eea6507b219906db9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.ruoyi.production.dto;
 
import com.ruoyi.production.pojo.ProductionProductMain;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
public class ProductionProductMainDto extends ProductionProductMain {
    @ApiModelProperty(value = "工单编号")
    private String workOrderNo;
 
    @ApiModelProperty(value = "工单状态")
    private String workOrderStatus;
 
    @ApiModelProperty(value = "报工人员昵称")
    private String nickName;
}