Commit 13445401 authored by mengmeng's avatar mengmeng

admin 修改service表字段

parent 148bfc90
......@@ -31,8 +31,8 @@ public class PensionServiceDTO implements Serializable {
@ApiModelProperty(value = "服务内容介绍")
private String serviceContent;
@ApiModelProperty(value = "服务类型")
private Long serviceParentId;
@ApiModelProperty(value = "服务父类id")
private Long pid;
@ApiModelProperty(value = "排序")
private Integer sort;
......
......@@ -25,9 +25,9 @@ public class PensionServiceEntity extends BaseEntity {
*/
private String name;
/**
* 服务类型
* 服务父类id
*/
private Long serviceParentId;
private Long pid;
/**
* 排序
*/
......@@ -77,4 +77,4 @@ public class PensionServiceEntity extends BaseEntity {
*/
private String serviceContent;
}
\ No newline at end of file
}
......@@ -18,8 +18,8 @@ public class PensionServiceExcel {
private Long id;
@Excel(name = "服务名称")
private String name;
@Excel(name = "服务类型")
private Long serviceParentId;
@Excel(name = "服务父类id")
private Long pid;
@Excel(name = "排序")
private Integer sort;
@Excel(name = "首页图标地址")
......@@ -50,4 +50,4 @@ public class PensionServiceExcel {
@Excel(name = "服务内容介绍")
private String serviceContent;
}
\ No newline at end of file
}
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