rentaiming
2024-07-16 068f7367353f9f20debc65ec4be2209ae3b90ecd
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")
@@ -86,5 +92,15 @@
    @TableField("type")
    private String type;
    @ApiModelProperty("出库时间")
    @TableField("ck_time")
    private Date ckTime;
    @ApiModelProperty("归还时间")
    @TableField("gh_time")
    private Date ghTime;
}