添加病友圈收藏记录表
parent
45d23a478e
commit
3b45f5fea8
|
@ -0,0 +1,50 @@
|
|||
package com.four.common.duck.communitypatients;
|
||||
|
||||
/**
|
||||
* @program: four-common-duck
|
||||
* @author: spc
|
||||
* @create: 2023-10-27 16:26
|
||||
* @Version 1.0
|
||||
**/
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* 收藏记录表
|
||||
*/
|
||||
|
||||
@Data
|
||||
public class detailCollectionRecord {
|
||||
/**
|
||||
* 收藏记录id
|
||||
*/
|
||||
private Long detailCollectionRecordId;
|
||||
|
||||
/**
|
||||
* 收藏记录人
|
||||
*/
|
||||
private String detailCollectionRecordUser;
|
||||
|
||||
/**
|
||||
* 收藏病友圈
|
||||
*/
|
||||
private Long detailsPatientCircleId;
|
||||
|
||||
/**
|
||||
* 收藏时间
|
||||
*/
|
||||
private Date detailCollectionRecordTime;
|
||||
|
||||
/**
|
||||
* 创建者
|
||||
*/
|
||||
private String detailCollectionRecordFounder;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
private Date detailCollectionRecordFounderTime;
|
||||
}
|
||||
|
|
@ -16,7 +16,6 @@ import javax.annotation.Resource;
|
|||
* @CreateTime: 2023-02-01 08:52
|
||||
*/
|
||||
@Component
|
||||
|
||||
public class FastUtil {
|
||||
private static final Logger log = LoggerFactory.getLogger(FastUtil.class);
|
||||
|
||||
|
|
Loading…
Reference in New Issue