guoyujie
2 天以前 b3d242b9b03258f51a147244d856c020d374ef6b
north-glass-erp/src/main/java/com/example/erp/entity/mm/FinishedGlassShelfWithdrawDetails.java
New file
@@ -0,0 +1,31 @@
package com.example.erp.entity.mm;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import lombok.Data;
@Data
public class FinishedGlassShelfWithdrawDetails {
    @TableId(type = IdType.AUTO)
    private Long id;
    private String withdrawId;
    private Integer withdrawNumber;
    private String glassShelfName;
    private Double maxWeight;
    private Double maxWidth;
    private Double maxHeight;
    private String emitId;
    private Integer emitNumber;
    private Integer quantity;
    private String unit;
    private Double price;
    private Double money;
    private String remarks;
    private FinishedGlassShelfWithdraw finishedGlassShelfWithdraw;
    private FinishedGlassShelfEmitDetails finishedGlassShelfEmitDetails;
}