| | |
| | | @TableField("uuid") |
| | | private String uuid; |
| | | |
| | | //最大熔指 |
| | | private double fingerMeltingMin; |
| | | //最小熔指 |
| | | private double fingerMeltingMax; |
| | | //最大熔点 |
| | | private double fusingPointMin; |
| | | //最小熔点 |
| | | private double fusingPointMax; |
| | | //最大黄度 |
| | | private double yellownessMin; |
| | | //最大黄度 |
| | | private double yellownessMax; |
| | | //最小不透明度 |
| | | private double opacityMin; |
| | | //最大不透明度 |
| | | private double opacityMax; |
| | | |
| | | public String getOwner$(){ |
| | | LocOwnerService service = SpringUtils.getBean(LocOwnerService.class); |
| | | LocOwner locOwner = service.selectById(this.owner); |
| | |
| | | } |
| | | |
| | | public Double getEnableQty() { |
| | | Double enableQty = null; |
| | | if (null != this.anfme && this.workQty != null) { |
| | | enableQty = this.anfme - this.workQty; |
| | | if (enableQty <0){ |
| | | enableQty = 0.0D; |
| | | } |
| | | |
| | | if (null != this.anfme && this.qty != null) { |
| | | return this.anfme - this.qty; |
| | | } |
| | | return null; |
| | | return enableQty; |
| | | } |
| | | |
| | | public void sync(Object source) { |