无关风月
2024-09-03 56dfe0d4bf81262622a1919cceb2b039fd356209
ruoyi-modules/ruoyi-management/src/main/java/com/ruoyi/management/domain/SlVolumeProductionCk.java
@@ -1,5 +1,6 @@
package com.ruoyi.management.domain;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
@@ -23,16 +24,21 @@
@ApiModel(value = "SlVolumeProductionCk对象", description = "发起出库")
public class SlVolumeProductionCk {
    @TableId("id")
    private Integer id;
    @TableId(value = "id", type = IdType.ASSIGN_ID)
    private Long id;
    @ApiModelProperty("出库管理id")
    @TableField(" ckgl_id")
    private Long  ckglId;
    @ApiModelProperty("物资id")
    @TableField("materials_id")
    private Integer materialsId;
    private Long materialsId;
    @ApiModelProperty("入库数量")
    @ApiModelProperty("入库批次")
    @TableField("rk_id")
    private Integer rkId;
    private Long rkId;
    @ApiModelProperty("出库数量")
    @TableField("ck_num")
@@ -84,7 +90,19 @@
    @ApiModelProperty("是否匹配 1未匹配,已匹配")
    @TableField("type")
    private String type;
    private Integer type;
    @ApiModelProperty("出库时间")
    @TableField("ck_time")
    private Date ckTime;
    @ApiModelProperty("归还时间")
    @TableField("gh_time")
    private Date ghTime;
    @ApiModelProperty("是否归还1 否,2 是")
    @TableField("is_gh")
    private Integer isGh;
}