rentaiming
2024-07-21 6c696606a420be0b99f820807045b2f21b05266e
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
26
27
28
29
package com.ruoyi.management.domain.dto;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel("转移批次修改数据传输对象")
public class SlVolumeProductionZyDTO {
    @TableId(value = "id", type = IdType.ASSIGN_ID)
    private Long id;
 
    @ApiModelProperty("转移出仓库ID")
    private Long managementId;
 
    @ApiModelProperty("被转移入仓库ID")
    private Long bmanagementId;
 
    @ApiModelProperty("转移原因")
    private String source;
 
    @ApiModelProperty("附件")
    private String attachmentUrl;
 
    @ApiModelProperty("审批单")
    private String authorization;
}