parent
7f3dcb190b
commit
2559b9e12d
8 changed files with 163 additions and 24 deletions
@ -0,0 +1,65 @@ |
|||||||
|
package org.springblade.desk.device.pojo.vo; |
||||||
|
|
||||||
|
import com.fasterxml.jackson.databind.annotation.JsonSerialize; |
||||||
|
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer; |
||||||
|
import io.swagger.v3.oas.annotations.media.Schema; |
||||||
|
import lombok.Data; |
||||||
|
|
||||||
|
import java.io.Serial; |
||||||
|
|
||||||
|
/** |
||||||
|
* 量具库 视图实体类 |
||||||
|
* |
||||||
|
* @author qyl |
||||||
|
* @since 2026-01-26 |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
public class ToolingLibraryVO { |
||||||
|
@Serial |
||||||
|
private static final long serialVersionUID = 1L; |
||||||
|
/** |
||||||
|
* 主键ID |
||||||
|
*/ |
||||||
|
@JsonSerialize(using = ToStringSerializer.class) |
||||||
|
private Long id; |
||||||
|
|
||||||
|
@Schema(description = "物料ID") |
||||||
|
Long goodsId; |
||||||
|
|
||||||
|
@Schema(description = "仓库ID") |
||||||
|
Long shId; |
||||||
|
|
||||||
|
@Schema(description = "库位ID") |
||||||
|
Long slId; |
||||||
|
|
||||||
|
@Schema(description = "物料名称") |
||||||
|
String goodsName; |
||||||
|
|
||||||
|
@Schema(description = "物料编码") |
||||||
|
String goodsCode; |
||||||
|
|
||||||
|
@Schema(description = "物料规格") |
||||||
|
String specifications; |
||||||
|
|
||||||
|
@Schema(description = "生产批次号") |
||||||
|
String piNo; |
||||||
|
|
||||||
|
@Schema(description = "仓库") |
||||||
|
String shName; |
||||||
|
|
||||||
|
@Schema(description = "库位号") |
||||||
|
String location; |
||||||
|
|
||||||
|
@Schema(description = "库存数量") |
||||||
|
String quantity; |
||||||
|
|
||||||
|
@Schema(description = "等级") |
||||||
|
String quantityLevel; |
||||||
|
|
||||||
|
@Schema(description = "金额") |
||||||
|
Double balanceMoney; |
||||||
|
|
||||||
|
@Schema(description = "累计使用次数") |
||||||
|
String sumNum; |
||||||
|
|
||||||
|
} |
||||||
Loading…
Reference in new issue