|
@@ -11,85 +11,116 @@ import zhsq_qk.common.core.domain.BaseEntity;
|
|
|
* @author lc
|
|
|
* @date 2024-07-18
|
|
|
*/
|
|
|
-public class QkRescueSupplies extends BaseEntity
|
|
|
- {
|
|
|
-private static final long serialVersionUID = 1L;
|
|
|
-
|
|
|
- /** 主键id */
|
|
|
- private Long id;
|
|
|
-
|
|
|
- /** 品种 */
|
|
|
- @Excel(name = "品种")
|
|
|
- private String varieties;
|
|
|
-
|
|
|
- /** 价值(万元) */
|
|
|
- @Excel(name = "价值", readConverterExp = "万=元")
|
|
|
- private String cost;
|
|
|
-
|
|
|
- /** 备注 */
|
|
|
- @Excel(name = "备注")
|
|
|
- private String remarks;
|
|
|
-
|
|
|
- /** 经度 */
|
|
|
- @Excel(name = "经度")
|
|
|
- private String longitude;
|
|
|
-
|
|
|
- /** 纬度 */
|
|
|
- @Excel(name = "纬度")
|
|
|
- private String latitude;
|
|
|
-
|
|
|
- public void setId(Long id) {
|
|
|
- this.id = id;
|
|
|
- }
|
|
|
-
|
|
|
- public Long getId() {
|
|
|
- return id;
|
|
|
- }
|
|
|
- public void setVarieties(String varieties) {
|
|
|
- this.varieties = varieties;
|
|
|
- }
|
|
|
-
|
|
|
- public String getVarieties() {
|
|
|
- return varieties;
|
|
|
- }
|
|
|
- public void setCost(String cost) {
|
|
|
- this.cost = cost;
|
|
|
- }
|
|
|
-
|
|
|
- public String getCost() {
|
|
|
- return cost;
|
|
|
- }
|
|
|
- public void setRemarks(String remarks) {
|
|
|
- this.remarks = remarks;
|
|
|
- }
|
|
|
-
|
|
|
- public String getRemarks() {
|
|
|
- return remarks;
|
|
|
- }
|
|
|
- public void setLongitude(String longitude) {
|
|
|
- this.longitude = longitude;
|
|
|
- }
|
|
|
-
|
|
|
- public String getLongitude() {
|
|
|
- return longitude;
|
|
|
- }
|
|
|
- public void setLatitude(String latitude) {
|
|
|
- this.latitude = latitude;
|
|
|
- }
|
|
|
-
|
|
|
- public String getLatitude() {
|
|
|
- return latitude;
|
|
|
- }
|
|
|
-
|
|
|
-@Override
|
|
|
-public String toString() {
|
|
|
- return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
|
|
|
- .append("id", getId())
|
|
|
- .append("varieties", getVarieties())
|
|
|
- .append("cost", getCost())
|
|
|
- .append("remarks", getRemarks())
|
|
|
- .append("longitude", getLongitude())
|
|
|
- .append("latitude", getLatitude())
|
|
|
- .toString();
|
|
|
-}
|
|
|
+public class QkRescueSupplies extends BaseEntity {
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 主键id
|
|
|
+ */
|
|
|
+ private Long id;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 品种
|
|
|
+ */
|
|
|
+ @Excel(name = "品种")
|
|
|
+ private String varieties;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 价值(万元)
|
|
|
+ */
|
|
|
+ @Excel(name = "价值", readConverterExp = "万=元")
|
|
|
+ private String cost;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 备注
|
|
|
+ */
|
|
|
+ @Excel(name = "备注")
|
|
|
+ private String remarks;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 经度
|
|
|
+ */
|
|
|
+ @Excel(name = "经度")
|
|
|
+ private String longitude;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 纬度
|
|
|
+ */
|
|
|
+ @Excel(name = "纬度")
|
|
|
+ private String latitude;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 所属部门
|
|
|
+ */
|
|
|
+ @Excel(name = "所属部门")
|
|
|
+ private String dept;
|
|
|
+
|
|
|
+ public void setId(Long id) {
|
|
|
+ this.id = id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getId() {
|
|
|
+ return id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setVarieties(String varieties) {
|
|
|
+ this.varieties = varieties;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getVarieties() {
|
|
|
+ return varieties;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCost(String cost) {
|
|
|
+ this.cost = cost;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCost() {
|
|
|
+ return cost;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRemarks(String remarks) {
|
|
|
+ this.remarks = remarks;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getRemarks() {
|
|
|
+ return remarks;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setLongitude(String longitude) {
|
|
|
+ this.longitude = longitude;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getLongitude() {
|
|
|
+ return longitude;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setLatitude(String latitude) {
|
|
|
+ this.latitude = latitude;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getLatitude() {
|
|
|
+ return latitude;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDept(String dept) {
|
|
|
+ this.dept = dept;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getDept() {
|
|
|
+ return dept;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public String toString() {
|
|
|
+ return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
|
|
|
+ .append("id", getId())
|
|
|
+ .append("varieties", getVarieties())
|
|
|
+ .append("cost", getCost())
|
|
|
+ .append("remarks", getRemarks())
|
|
|
+ .append("longitude", getLongitude())
|
|
|
+ .append("latitude", getLatitude())
|
|
|
+ .append("dept", getDept())
|
|
|
+ .toString();
|
|
|
+ }
|
|
|
}
|