风控之眼,风险预警平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

36 lines
739 B

package com.fxzy.warn.model;
import com.baomidou.mybatisplus.annotation.*;
import com.baomidou.mybatisplus.extension.activerecord.Model;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
/**
* @author zhangjing
* @date 2024/10/16 18:09
* @description
*/
@ApiModel("")
@Data
@EqualsAndHashCode(callSuper = true)
@Accessors(chain = true)
@TableName("")
public class Test extends Model<Test> {
/**
* id
*/
@ApiModelProperty("id")
@TableId(type = IdType.ASSIGN_UUID)
private String id;
/**
* 所属项目
*/
@ApiModelProperty("name")
private String name;
}