保存进度!
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
* @Author: Kane Wang <wangkane@qq.com>
|
||||
* @Date: 2025-12-26 17:25:13
|
||||
* @LastEditors: Kane Wang
|
||||
* @LastModified: 2026-03-19 14:51:38
|
||||
* @LastModified: 2026-03-20 10:55:16
|
||||
* @FilePath: src/main/java/com/cpic/xim/web/controllers/regulatory/AddNewRegulatoryRequest.java
|
||||
* @Description:
|
||||
*
|
||||
@@ -15,15 +15,15 @@ import com.cpic.xim.utils.files.RegulatoryFile;
|
||||
|
||||
import java.util.Vector;
|
||||
|
||||
public class AddNewRegulatoryRequest
|
||||
public class AddNewRegulatoryRequest
|
||||
{
|
||||
|
||||
|
||||
public AddNewRegulatoryRequest()
|
||||
{
|
||||
this.regulatoryName = "";
|
||||
this.departmentName = "";
|
||||
this.releaseYear = "";
|
||||
this.comment = "";
|
||||
this.regulatoryDesc = "";
|
||||
this.regulatoryFiles = new Vector<RegulatoryFile>();
|
||||
}
|
||||
|
||||
@@ -31,14 +31,14 @@ public class AddNewRegulatoryRequest
|
||||
String regulatoryName,
|
||||
String departmentName,
|
||||
String releaseYear,
|
||||
String comment,
|
||||
String regulatoryDesc,
|
||||
Vector<RegulatoryFile> regulatoryFiles
|
||||
)
|
||||
{
|
||||
this.regulatoryName = regulatoryName;
|
||||
this.departmentName = departmentName;
|
||||
this.releaseYear = releaseYear;
|
||||
this.comment = comment;
|
||||
this.regulatoryDesc = regulatoryDesc;
|
||||
this.regulatoryFiles = regulatoryFiles;
|
||||
}
|
||||
|
||||
@@ -74,12 +74,12 @@ public class AddNewRegulatoryRequest
|
||||
|
||||
public String getComment()
|
||||
{
|
||||
return comment;
|
||||
return regulatoryDesc;
|
||||
}
|
||||
|
||||
public void setComment( String comment )
|
||||
public void setComment( String regulatoryDesc )
|
||||
{
|
||||
this.comment = comment;
|
||||
this.regulatoryDesc = regulatoryDesc;
|
||||
}
|
||||
|
||||
public Vector<RegulatoryFile> getRegulatoryFiles()
|
||||
@@ -92,18 +92,18 @@ public class AddNewRegulatoryRequest
|
||||
this.regulatoryFiles = regulatoryFiles;
|
||||
}
|
||||
|
||||
@JsonProperty("regulatory_name")
|
||||
@JsonProperty( "regulatory_name" )
|
||||
private String regulatoryName;
|
||||
|
||||
@JsonProperty("department_name")
|
||||
@JsonProperty( "department_name" )
|
||||
private String departmentName;
|
||||
|
||||
@JsonProperty("release_year")
|
||||
@JsonProperty( "release_year" )
|
||||
private String releaseYear;
|
||||
|
||||
@JsonProperty("comment")
|
||||
private String comment;
|
||||
@JsonProperty( "regulatory_desc" )
|
||||
private String regulatoryDesc;
|
||||
|
||||
@JsonProperty("regulatory_files")
|
||||
@JsonProperty( "regulatory_files" )
|
||||
private Vector<RegulatoryFile> regulatoryFiles;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user