Commit 897a94e9 authored by unset's avatar unset

Merge remote-tracking branch 'origin/dev' into dev

parents 0ab0dbf2 4bfd0e09
......@@ -23,7 +23,7 @@ public class RscpImagePrice implements java.io.Serializable {
@KeySql(useGeneratedKeys = true)
@Column(name = "id",insertable = false)
@ApiModelProperty(value = "标识")
private String id;
private Integer id;
/** 卫星 */
@ApiModelProperty(value = "卫星")
......@@ -114,7 +114,7 @@ public class RscpImagePrice implements java.io.Serializable {
*
* @return 标识
*/
public String getId() {
public Integer getId() {
return this.id;
}
......@@ -124,7 +124,7 @@ public class RscpImagePrice implements java.io.Serializable {
* @param id
* 标识
*/
public void setId(String id) {
public void setId(Integer id) {
this.id = id;
}
......
......@@ -21,7 +21,7 @@ public class RscpResolution implements java.io.Serializable {
@KeySql(useGeneratedKeys = true)
@Column(name = "id",insertable = false)
@ApiModelProperty(value = "")
private String id;
private Integer id;
/** resolutionName */
@ApiModelProperty(value = "分辨率标识")
......
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