You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
783 B
Java

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package com.sztzjy.linkCommerce.entity.dto;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
/**
* @author 17803
* @date 2024-08-13 14:56
*/
@Data
public class StuMachineLearningInfoDTO {
@DateTimeFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8")
@ApiModelProperty("登录时间")
private String loginTime;
@ApiModelProperty("日活跃用户")
private Integer activeUser;
@ApiModelProperty("日活跃率(%")
private Double activeUserRate;
@ApiModelProperty("日活跃平均时长")
private Double activeUserTime;
}