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.
35 lines
769 B
Java
35 lines
769 B
Java
2 years ago
|
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;
|
||
|
|
||
|
/**
|
||
|
* 定数包产品关联表
|
||
|
*/
|
||
|
@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;
|
||
|
}
|