Compare commits
2 Commits
13c954d72e
...
d1f85c8818
Author | SHA1 | Date |
---|---|---|
|
d1f85c8818 | |
|
0d72b7080c |
|
@ -0,0 +1,25 @@
|
||||||
|
package doctor.entity;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @BelongsProject: Medical_Treatment
|
||||||
|
* @BelongsPackage: doctor.entity
|
||||||
|
* @Author: jpz
|
||||||
|
* @CreateTime: 2024/1/8 21:33
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
public class UserAdoptCommentEntity {
|
||||||
|
private Integer id;
|
||||||
|
private Integer userId;
|
||||||
|
private Integer releaseUserId;
|
||||||
|
private String releaseUserName;
|
||||||
|
private String releaseUserHeadPic;
|
||||||
|
private Integer sickCircleId;
|
||||||
|
private String title;
|
||||||
|
private String disease;
|
||||||
|
private String content;
|
||||||
|
private Date createTime;
|
||||||
|
}
|
|
@ -0,0 +1,22 @@
|
||||||
|
package doctor.entity;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @BelongsProject: Medical_Treatment
|
||||||
|
* @BelongsPackage: doctor.entity
|
||||||
|
* @Author: jpz
|
||||||
|
* @CreateTime: 2024/1/8 21:37
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
public class UserArchivesEntity {
|
||||||
|
private Integer id;
|
||||||
|
private Integer userId;
|
||||||
|
private String bankCardNumber;
|
||||||
|
private String bankName;
|
||||||
|
private Integer bankCardType;
|
||||||
|
private Date updateTime;
|
||||||
|
private Date createTime;
|
||||||
|
}
|
|
@ -0,0 +1,21 @@
|
||||||
|
package doctor.entity;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @BelongsProject: Medical_Treatment
|
||||||
|
* @BelongsPackage: doctor.entity
|
||||||
|
* @Author: jpz
|
||||||
|
* @CreateTime: 2024/1/8 21:40
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
public class UserBindingLoginEntity {
|
||||||
|
private Integer id;
|
||||||
|
private Integer userId;
|
||||||
|
private Integer type;
|
||||||
|
private String openId;
|
||||||
|
private String unionId;
|
||||||
|
private Date createTime;
|
||||||
|
}
|
|
@ -0,0 +1,22 @@
|
||||||
|
package doctor.entity;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @BelongsProject: Medical_Treatment
|
||||||
|
* @BelongsPackage: doctor.entity
|
||||||
|
* @Author: jpz
|
||||||
|
* @CreateTime: 2024/1/8 21:45
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
public class UserConsumptionRecordEntity {
|
||||||
|
private Integer id;
|
||||||
|
private Integer userId;
|
||||||
|
private Integer type;
|
||||||
|
private Integer balance;
|
||||||
|
private Integer changeNum;
|
||||||
|
private String remark;
|
||||||
|
private Date createTime;
|
||||||
|
}
|
|
@ -0,0 +1,19 @@
|
||||||
|
package doctor.entity;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @BelongsProject: Medical_Treatment
|
||||||
|
* @BelongsPackage: doctor.entity
|
||||||
|
* @Author: jpz
|
||||||
|
* @CreateTime: 2024/1/8 21:49
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
public class UserDoctorFollowEntity {
|
||||||
|
private Integer id;
|
||||||
|
private Integer userId;
|
||||||
|
private Integer doctorId;
|
||||||
|
private Date createTime;
|
||||||
|
}
|
|
@ -0,0 +1,23 @@
|
||||||
|
package doctor.entity;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @BelongsProject: Medical_Treatment
|
||||||
|
* @BelongsPackage: doctor.entity
|
||||||
|
* @Author: jpz
|
||||||
|
* @CreateTime: 2024/1/8 21:53
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
public class UserDrawRecordEntity {
|
||||||
|
private Integer id;
|
||||||
|
private Integer userId;
|
||||||
|
private Double money;
|
||||||
|
private String bankCardNumber;
|
||||||
|
private String bankName;
|
||||||
|
private String remark;
|
||||||
|
private Integer status;
|
||||||
|
private Date createTime;
|
||||||
|
}
|
|
@ -0,0 +1,29 @@
|
||||||
|
package doctor.entity;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @BelongsProject: Medical_Treatment
|
||||||
|
* @BelongsPackage: doctor.entity
|
||||||
|
* @Author: jpz
|
||||||
|
* @CreateTime: 2024/1/8 20:59
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
public class UserEntity {
|
||||||
|
private Integer id;
|
||||||
|
private String phone;
|
||||||
|
private String pwd;
|
||||||
|
private String email;
|
||||||
|
private String nickName;
|
||||||
|
private String userName;
|
||||||
|
private String headPic;
|
||||||
|
private Integer sex;
|
||||||
|
private Integer age;
|
||||||
|
private Integer height;
|
||||||
|
private Integer weight;
|
||||||
|
private String invitationCode;
|
||||||
|
private Date updateTime;
|
||||||
|
private Date createTime;
|
||||||
|
}
|
|
@ -0,0 +1,25 @@
|
||||||
|
package doctor.entity;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @BelongsProject: Medical_Treatment
|
||||||
|
* @BelongsPackage: doctor.entity
|
||||||
|
* @Author: jpz
|
||||||
|
* @CreateTime: 2024/1/8 21:56
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
public class UserIdCardEntity {
|
||||||
|
private Integer id;
|
||||||
|
private Integer userId;
|
||||||
|
private String name;
|
||||||
|
private String sex;
|
||||||
|
private String nation;
|
||||||
|
private String birthday;
|
||||||
|
private String address;
|
||||||
|
private String idNumber;
|
||||||
|
private String issueOffice;
|
||||||
|
private Date createTime;
|
||||||
|
}
|
|
@ -0,0 +1,19 @@
|
||||||
|
package doctor.entity;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @BelongsProject: Medical_Treatment
|
||||||
|
* @BelongsPackage: doctor.entity
|
||||||
|
* @Author: jpz
|
||||||
|
* @CreateTime: 2024/1/8 22:02
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
public class UserInfoCollectionEntity {
|
||||||
|
private Integer id;
|
||||||
|
private Integer userId;
|
||||||
|
private String infoId;
|
||||||
|
private Date createTime;
|
||||||
|
}
|
|
@ -0,0 +1,14 @@
|
||||||
|
package doctor.vo;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @BelongsProject: Medical_Treatment
|
||||||
|
* @BelongsPackage: doctor.vo
|
||||||
|
* @Author: jpz
|
||||||
|
* @CreateTime: 2024/1/8 20:41
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
public class UserVo {
|
||||||
|
|
||||||
|
}
|
1
pom.xml
1
pom.xml
|
@ -216,7 +216,6 @@
|
||||||
<module>doctor-modules</module>
|
<module>doctor-modules</module>
|
||||||
<module>doctor-api</module>
|
<module>doctor-api</module>
|
||||||
<module>doctor-common</module>
|
<module>doctor-common</module>
|
||||||
<module>doctor-modules/doctor-health</module>
|
|
||||||
</modules>
|
</modules>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue