Compare commits
No commits in common. "d1f85c88180c4ee80b24d8c14cf8ab83cd8fbb0e" and "13c954d72ec3952ab50876d9386ca07294320b4f" have entirely different histories.
d1f85c8818
...
13c954d72e
|
@ -1,25 +0,0 @@
|
||||||
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;
|
|
||||||
}
|
|
|
@ -1,22 +0,0 @@
|
||||||
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;
|
|
||||||
}
|
|
|
@ -1,21 +0,0 @@
|
||||||
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;
|
|
||||||
}
|
|
|
@ -1,22 +0,0 @@
|
||||||
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;
|
|
||||||
}
|
|
|
@ -1,19 +0,0 @@
|
||||||
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;
|
|
||||||
}
|
|
|
@ -1,23 +0,0 @@
|
||||||
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;
|
|
||||||
}
|
|
|
@ -1,29 +0,0 @@
|
||||||
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;
|
|
||||||
}
|
|
|
@ -1,25 +0,0 @@
|
||||||
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;
|
|
||||||
}
|
|
|
@ -1,19 +0,0 @@
|
||||||
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;
|
|
||||||
}
|
|
|
@ -1,14 +0,0 @@
|
||||||
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,6 +216,7 @@
|
||||||
<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