You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
968 B
Java
46 lines
968 B
Java
package com.glxp.api.entity.inout;
|
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import lombok.Data;
|
|
|
|
import java.util.Date;
|
|
|
|
/**
|
|
* 定数包产品关联表
|
|
*/
|
|
@Data
|
|
@TableName(value = "io_destiny_process_detail")
|
|
public class IoDestinyProcessDetailEntity {
|
|
@TableId(value = "id", type = IdType.INPUT)
|
|
private Long id;
|
|
|
|
/**
|
|
* 耗材产品id
|
|
*/
|
|
@TableField(value = "relId")
|
|
private Long relId;
|
|
|
|
/**
|
|
* 数量
|
|
*/
|
|
@TableField(value = "`count`")
|
|
private Integer count;
|
|
|
|
/**
|
|
* 实际数量
|
|
*/
|
|
@TableField(value = "reCount")
|
|
private Integer reCount;
|
|
|
|
@TableField(value = "updateTime")
|
|
private Date updateTime;
|
|
|
|
/**
|
|
* 订单号外键
|
|
*/
|
|
@TableField(value = "orderIdFk")
|
|
private String orderIdFk;
|
|
} |