添加病友圈收藏记录表

master
18404992668 2023-10-27 16:30:06 +08:00
parent 45d23a478e
commit 3b45f5fea8
2 changed files with 50 additions and 1 deletions

View File

@ -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;
}

View File

@ -16,7 +16,6 @@ import javax.annotation.Resource;
* @CreateTime: 2023-02-01 08:52 * @CreateTime: 2023-02-01 08:52
*/ */
@Component @Component
public class FastUtil { public class FastUtil {
private static final Logger log = LoggerFactory.getLogger(FastUtil.class); private static final Logger log = LoggerFactory.getLogger(FastUtil.class);