无关风月
2024-09-03 56dfe0d4bf81262622a1919cceb2b039fd356209
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.ruoyi.management.domain.dto;
 
import com.baomidou.mybatisplus.annotation.TableField;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.Date;
 
@Data
@ApiModel("审核管理传输对象")
public class SlAuditDTO {
    @ApiModelProperty("入库id/出库id/转移id")
    @TableField("rk_id")
    private Long rkId;
 
    @ApiModelProperty("1 入库审核,2 出库审核,3 是转移审核")
    @TableField("type")
    private Integer type;
}