parent
2f42964a96
commit
040a66965c
@ -1,26 +0,0 @@
|
|||||||
package cn.iocoder.yudao.module.member.controller.admin.signin.vo;
|
|
||||||
|
|
||||||
import lombok.*;
|
|
||||||
|
|
||||||
import java.time.LocalDateTime;
|
|
||||||
|
|
||||||
import com.alibaba.excel.annotation.ExcelProperty;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 积分签到规则 Excel VO
|
|
||||||
*
|
|
||||||
* @author QingX
|
|
||||||
*/
|
|
||||||
@Data
|
|
||||||
public class MemberSignInConfigExcelVO {
|
|
||||||
|
|
||||||
@ExcelProperty("签到第x天")
|
|
||||||
private Integer day;
|
|
||||||
|
|
||||||
@ExcelProperty("签到天数对应分数")
|
|
||||||
private Integer point;
|
|
||||||
|
|
||||||
@ExcelProperty("创建时间")
|
|
||||||
private LocalDateTime createTime;
|
|
||||||
|
|
||||||
}
|
|
||||||
@ -1,31 +0,0 @@
|
|||||||
package cn.iocoder.yudao.module.member.controller.admin.signin.vo;
|
|
||||||
|
|
||||||
import com.alibaba.excel.annotation.ExcelProperty;
|
|
||||||
import lombok.Data;
|
|
||||||
|
|
||||||
import java.time.LocalDateTime;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 用户签到积分 Excel VO
|
|
||||||
*
|
|
||||||
* @author 芋道源码
|
|
||||||
*/
|
|
||||||
@Data
|
|
||||||
public class MemberSignInRecordExcelVO {
|
|
||||||
|
|
||||||
@ExcelProperty("签到自增id")
|
|
||||||
private Long id;
|
|
||||||
|
|
||||||
@ExcelProperty("签到用户")
|
|
||||||
private Integer userId;
|
|
||||||
|
|
||||||
@ExcelProperty("第几天签到")
|
|
||||||
private Integer day;
|
|
||||||
|
|
||||||
@ExcelProperty("签到的分数")
|
|
||||||
private Integer point;
|
|
||||||
|
|
||||||
@ExcelProperty("签到时间")
|
|
||||||
private LocalDateTime createTime;
|
|
||||||
|
|
||||||
}
|
|
||||||
Loading…
Reference in New Issue