Commit 1a7cd308 sunke

使用情况缓存

1 个父辈 5106b78e
package com.myproject.bean.json;
/**
* Created by sunke on 2020/3/9.
*/
public class UsageItem {
/**
* 直径
*/
private int w;
/**
* 高度
*/
private int h;
/**
* 使用仓位数
*/
private int usedCount;
/**
* 总仓位数
*/
private int totalCount;
public int getH() {
return h;
}
public void setH(int h) {
this.h = h;
}
public int getUsedCount() {
return usedCount;
}
public void setUsedCount(int usedCount) {
this.usedCount = usedCount;
}
public int getTotalCount() {
return totalCount;
}
public void setTotalCount(int totalCount) {
this.totalCount = totalCount;
}
public int getW() {
return w;
}
public void setW(int w) {
this.w = w;
}
public String getSizeStr(){
return w+"x"+h;
}
}
支持 Markdown 格式
你添加了 0 到此讨论。请谨慎行事。
Finish editing this message first!