| | |
| | | package com.example.springboot.entity; |
| | | |
| | | //出片队列表 |
| | | public class Out_slice { |
| | | private int id;//自增id |
| | |
| | | private String boxId;//箱子id |
| | | private double glasswidthmm;//玻璃宽mm |
| | | private double glassheightmm;//玻璃高mm |
| | | private String position_x;//x坐标 |
| | | private int framestate;//y坐标 |
| | | private int framestate;//铝框状态 |
| | | private double framewidthmm; |
| | | private double frameheightmm; |
| | | private String cell;//格子号 |
| | | |
| | | public String getPosition() { |
| | | return position; |
| | |
| | | public void SetFrameState(int framestate) { |
| | | this.framestate = framestate; |
| | | } |
| | | |
| | | public double getFrameWidthMm() { |
| | | return framewidthmm; |
| | | } |
| | | |
| | | public void setFrameWidthMm(double framewidthmm) { |
| | | this.framewidthmm = framewidthmm; |
| | | } |
| | | |
| | | public double getFrameHeightMm() { |
| | | return frameheightmm; |
| | | } |
| | | |
| | | public void setFrameHeightMm(double frameheightmm) { |
| | | this.frameheightmm = frameheightmm; |
| | | } |
| | | |
| | | public String getCell() { |
| | | return cell; |
| | | } |
| | | |
| | | public void setCell(String cell) { |
| | | this.cell = cell; |
| | | } |
| | | |
| | | } |