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 emitId;
|
private Integer emitNumber;
|
private String glassShelfName;
|
private String glassShelfNumber;
|
private Integer quantity;
|
private String unit;
|
private Double price;
|
private Double money;
|
private String remarks;
|
private FinishedGlassShelfWithdraw finishedGlassShelfWithdraw;
|
private FinishedGlassShelfEmitDetails finishedGlassShelfEmitDetails;
|
|
|
|
}
|