rentaiming
2024-07-03 2df8a92c7affbb7bf04659cab7d784b57a3e1bf5
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,16 @@
@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("materials_id")
    private Integer materialsId;
    private Long materialsId;
    @ApiModelProperty("入库数量")
    @TableField("rk_id")
    private Integer rkId;
    private Long rkId;
    @ApiModelProperty("出库数量")
    @TableField("ck_num")
@@ -86,5 +87,13 @@
    @TableField("type")
    private String type;
    @ApiModelProperty("出库时间")
    @TableField("ck_time")
    private Date ckTime;
    @ApiModelProperty("归还时间")
    @TableField("gh_time")
    private Date ghTime;
}