Commit 13445401 authored by mengmeng's avatar mengmeng

admin 修改service表字段

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