Commit 4b24f3f7 authored by 刘凡's avatar 刘凡

新增:新增注释

parent 92e60d34
......@@ -56,7 +56,7 @@ public class CylinderFillingDataValidationService {
/**
* 校验气瓶数据
* 校验气瓶基本信息数据
* @param infoData
* @return
*/
......@@ -87,6 +87,11 @@ public class CylinderFillingDataValidationService {
return true;
}
/**
* 校验气瓶标签
* @param tagData
* @return
*/
public boolean validateCylinderTag(List<CylinderTagsModel> tagData) {
JSONArray jsonArray = JSONArray.fromObject(tagData);
// 1.必填校验
......@@ -109,6 +114,11 @@ public class CylinderFillingDataValidationService {
return true;
}
/**
* 气瓶检验信息
* @param inspectionData
* @return
*/
boolean validateCylinderInspection(List<CylinderInspectionModel> inspectionData) {
JSONArray jsonArray = JSONArray.fromObject(inspectionData);
// 1.必填校验
......@@ -132,6 +142,11 @@ public class CylinderFillingDataValidationService {
}
/**
* 校验审核信息
* @param inspectionData
* @return
*/
boolean validateCylinderFillingExamineModel(List<CylinderFillingExamineModel> inspectionData) {
JSONArray jsonArray = JSONArray.fromObject(inspectionData);
// 1.必填校验
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment