Browse Source

心理咨询DTO

master
zhangyuan 5 years ago
parent
commit
366ee7bcd5
  1. 61
      epdc-cloud-admin-client/src/main/java/com/elink/esua/epdc/dto/SysRoleMembersDTO.java
  2. 46
      epdc-cloud-admin-client/src/main/java/com/elink/esua/epdc/dto/SysRoleMembersFormDTO.java
  3. 116
      epdc-cloud-property-client/src/main/java/com/elink/esua/epdc/dto/psychology/PsychologistDTO.java
  4. 86
      epdc-cloud-property-client/src/main/java/com/elink/esua/epdc/dto/psychology/PsychologistTitleDTO.java
  5. 81
      epdc-cloud-property-client/src/main/java/com/elink/esua/epdc/dto/psychology/PsychologistTitleRelationDTO.java

61
epdc-cloud-admin-client/src/main/java/com/elink/esua/epdc/dto/SysRoleMembersDTO.java

@ -0,0 +1,61 @@
/**
* Copyright 2018 人人开源 https://www.renren.io
* <p>
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* <p>
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* <p>
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package com.elink.esua.epdc.dto;
import lombok.Data;
import java.io.Serializable;
/**
* 角色成员
*
* @author zhangyuan qu@elink-cn.com
* @since v1.0.0 2020-06-04
*/
@Data
public class SysRoleMembersDTO implements Serializable {
private static final long serialVersionUID = 1L;
/**
* 主键
*/
private String id;
/**
* 用户姓名
*/
private String userName;
/**
* 用户姓名
*/
private String realName;
/**
* 部门ID
*/
private String deptId;
/**
* 手机
*/
private String mobile;
}

46
epdc-cloud-admin-client/src/main/java/com/elink/esua/epdc/dto/SysRoleMembersFormDTO.java

@ -0,0 +1,46 @@
/**
* Copyright 2018 人人开源 https://www.renren.io
* <p>
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* <p>
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* <p>
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package com.elink.esua.epdc.dto;
import lombok.Data;
import java.io.Serializable;
/**
* 角色成员
*
* @author zhangyuan qu@elink-cn.com
* @since v1.0.0 2020-06-04
*/
@Data
public class SysRoleMembersFormDTO implements Serializable {
private static final long serialVersionUID = 1L;
/**
* 主键
*/
private String roleId;
/**
* 用户信息
*/
private String userInfo;
}

116
epdc-cloud-property-client/src/main/java/com/elink/esua/epdc/dto/psychology/PsychologistDTO.java

@ -0,0 +1,116 @@
/**
* Copyright 2018 人人开源 https://www.renren.io
* <p>
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* <p>
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* <p>
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package com.elink.esua.epdc.dto.psychology;
import java.io.Serializable;
import java.util.Date;
import lombok.Data;
/**
* 心理咨询师表
*
* @author zhangyuan qu@elink-cn.com
* @since v1.0.0 2020-06-04
*/
@Data
public class PsychologistDTO implements Serializable {
private static final long serialVersionUID = 1L;
/**
* 主键
*/
private String id;
/**
* 咨询师姓名
*/
private String name;
/**
* 咨询师照片地址
*/
private String avatar;
/**
* 咨询师联系方式
*/
private String mobile;
/**
* 咨询师性别 0女 1男
*/
private String sex;
/**
* 绑定用户的id
*/
private String userId;
/**
* 座右铭
*/
private String motto;
/**
* 简介
*/
private String briefIntroduction;
/**
* 排序 从小到大
*/
private Integer sort;
/**
* 是否展示 0否 1是
*/
private String displayFlag;
/**
* 删除标记 0未删除1已删除
*/
private String delFlag;
/**
* 乐观锁
*/
private Integer revision;
/**
* 创建人
*/
private String createdBy;
/**
* 创建时间
*/
private Date createdTime;
/**
* 更新人
*/
private String updatedBy;
/**
* 更新时间
*/
private Date updatedTime;
}

86
epdc-cloud-property-client/src/main/java/com/elink/esua/epdc/dto/psychology/PsychologistTitleDTO.java

@ -0,0 +1,86 @@
/**
* Copyright 2018 人人开源 https://www.renren.io
* <p>
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* <p>
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* <p>
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package com.elink.esua.epdc.dto.psychology;
import java.io.Serializable;
import java.util.Date;
import lombok.Data;
/**
* 心理咨询师头衔表
*
* @author zhangyuan qu@elink-cn.com
* @since v1.0.0 2020-06-04
*/
@Data
public class PsychologistTitleDTO implements Serializable {
private static final long serialVersionUID = 1L;
/**
* 主键
*/
private String id;
/**
* 头衔
*/
private String title;
/**
* 头衔编码
*/
private String code;
/**
* 排序
*/
private String sort;
/**
* 删除标记 0未删除1已删除
*/
private String delFlag;
/**
* 乐观锁
*/
private Integer revision;
/**
* 创建人
*/
private String createdBy;
/**
* 创建时间
*/
private Date createdTime;
/**
* 更新人
*/
private String updatedBy;
/**
* 更新时间
*/
private Date updatedTime;
}

81
epdc-cloud-property-client/src/main/java/com/elink/esua/epdc/dto/psychology/PsychologistTitleRelationDTO.java

@ -0,0 +1,81 @@
/**
* Copyright 2018 人人开源 https://www.renren.io
* <p>
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* <p>
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* <p>
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package com.elink.esua.epdc.dto.psychology;
import java.io.Serializable;
import java.util.Date;
import lombok.Data;
/**
* 心理咨询师头衔表
*
* @author zhangyuan qu@elink-cn.com
* @since v1.0.0 2020-06-04
*/
@Data
public class PsychologistTitleRelationDTO implements Serializable {
private static final long serialVersionUID = 1L;
/**
* 主键
*/
private String id;
/**
* 头衔id
*/
private String titleId;
/**
* 咨询师id
*/
private String psychologistId;
/**
* 删除标记 0未删除1已删除
*/
private String delFlag;
/**
* 乐观锁
*/
private Integer revision;
/**
* 创建人
*/
private String createdBy;
/**
* 创建时间
*/
private Date createdTime;
/**
* 更新人
*/
private String updatedBy;
/**
* 更新时间
*/
private Date updatedTime;
}
Loading…
Cancel
Save