|
@@ -24,7 +24,7 @@ public class LantoneProduct implements Serializable {
|
|
|
* 产品id
|
|
|
*/
|
|
|
@TableId(value = "id", type = IdType.AUTO)
|
|
|
- private Integer id;
|
|
|
+ private Long id;
|
|
|
|
|
|
/**
|
|
|
* 是否删除 N:未删除,Y:删除
|
|
@@ -92,11 +92,11 @@ public class LantoneProduct implements Serializable {
|
|
|
private String accessType;
|
|
|
|
|
|
|
|
|
- public Integer getId() {
|
|
|
+ public Long getId() {
|
|
|
return id;
|
|
|
}
|
|
|
|
|
|
- public void setId(Integer id) {
|
|
|
+ public void setId(Long id) {
|
|
|
this.id = id;
|
|
|
}
|
|
|
|