All Downloads are FREE. Search and download functionalities are using the official Maven repository.

k.e.book.ddh.entity.CcAdminLogAddDTO Maven / Gradle / Ivy


package k.e.book.ddh.entity;

import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;

import javax.validation.constraints.NotNull;
import java.io.Serializable;
import java.util.Date;
/**
 * @author kk
 * @date 2023-05-21 14:25
 */
@Data
@ApiModel(value="CcAdminLogAddDTO", description="CcAdminLog")
public class CcAdminLogAddDTO implements Serializable{

    @ApiModelProperty(value = "ID")
    private Integer id;

    @ApiModelProperty(value = "管理员ID")
    private Integer adminId;

    @ApiModelProperty(value = "管理员名字")
    private String username;

    @ApiModelProperty(value = "操作页面")
    private String url;

    @ApiModelProperty(value = "日志标题")
    private String title;

    @ApiModelProperty(value = "内容")
    private String content;

    @ApiModelProperty(value = "IP")
    private String ip;

    @ApiModelProperty(value = "User-Agent")
    private String useragent;

    @ApiModelProperty(value = "操作时间")
    private Long createtime;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy