稻花香仓库初始化
This commit is contained in:
@@ -0,0 +1,55 @@
|
||||
package com.seeyon.apps.daohuaxiangSys.chushihua.vo;
|
||||
|
||||
import cn.hutool.core.convert.Convert;
|
||||
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* 功能描述:<br>
|
||||
* <pre>
|
||||
*
|
||||
* </pre>
|
||||
*
|
||||
* @Author: FanGaowei
|
||||
* @Date: 2023/12/8
|
||||
*/
|
||||
public class HsDataVo {
|
||||
|
||||
|
||||
private Long summaryId;
|
||||
private Long formId;
|
||||
private Long masterId;
|
||||
|
||||
public HsDataVo(Map<String, Object> row) {
|
||||
this.summaryId = Convert.toLong(row.get("id"));
|
||||
this.masterId = Convert.toLong(row.get("form_recordid"));
|
||||
this.formId = Convert.toLong(row.get("form_appid"));
|
||||
}
|
||||
|
||||
public Long getSummaryId() {
|
||||
return summaryId;
|
||||
}
|
||||
|
||||
public HsDataVo setSummaryId(Long summaryId) {
|
||||
this.summaryId = summaryId;
|
||||
return this;
|
||||
}
|
||||
|
||||
public Long getFormId() {
|
||||
return formId;
|
||||
}
|
||||
|
||||
public HsDataVo setFormId(Long formId) {
|
||||
this.formId = formId;
|
||||
return this;
|
||||
}
|
||||
|
||||
public Long getMasterId() {
|
||||
return masterId;
|
||||
}
|
||||
|
||||
public HsDataVo setMasterId(Long masterId) {
|
||||
this.masterId = masterId;
|
||||
return this;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user