添加签到记录表

master
18404992668 2023-11-02 19:11:15 +08:00
parent c49a750cde
commit 8ec2f54718
1 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,36 @@
package com.four.common.duck.communitypatients;
import lombok.Data;
import java.util.Date;
/**
* @program: four-common-duck
* @author: spc
* @create: 2023-11-02 19:08
* @Version 1.0
**/
@Data
public class UserSign {
/**
*ID
*/
private Long userSignId;
/**
* ID
*/
private Long userId;
/**
*
*/
private Date signDate;
/**
*
*/
private Integer signAmount;
}