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