|
|
|
|
@ -1,5 +1,7 @@ |
|
|
|
|
package org.springblade.wms.pojo.vo; |
|
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableField; |
|
|
|
|
import io.swagger.v3.oas.annotations.media.Schema; |
|
|
|
|
import lombok.Data; |
|
|
|
|
import lombok.EqualsAndHashCode; |
|
|
|
|
import org.springblade.wms.pojo.entity.StGraphiteMoldOut; |
|
|
|
|
@ -20,5 +22,14 @@ public class StGraphiteMoldOutVO extends StGraphiteMoldOut { |
|
|
|
|
@Serial |
|
|
|
|
private static final long serialVersionUID = 1L; |
|
|
|
|
|
|
|
|
|
@Schema(description = "创建人名称") |
|
|
|
|
@TableField(exist = false) |
|
|
|
|
private String createUserName; |
|
|
|
|
@Schema(description = "出库人名称") |
|
|
|
|
@TableField(exist = false) |
|
|
|
|
private String outUserName; |
|
|
|
|
@Schema(description = "领料人名称") |
|
|
|
|
@TableField(exist = false) |
|
|
|
|
private String pickerName; |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|