风控之眼,风险预警平台
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.
 

59 lines
1.4 KiB

package com.fkzy.warn.model;
import com.alibaba.fastjson2.annotation.JSONField;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
/**
* 案件关系
* @author zhangjing
* @date 2024/12/05 14:07
* @description
*/
@Data
@TableName("t_case_tree")
public class CaseTree extends BaseField{
/**
* 主键
*/
@ApiModelProperty("ae0920edfe2a79216526fd45eaada6b8")
@TableId(value = "n_ajbs",type = IdType.INPUT)
@JSONField(name = "n_ajbs")
private String nAjbs;
/**
*
*/
@ApiModelProperty("1")
@TableField(value = "stage_type")
@JSONField(name = "stage_type")
private String stageType;
/**
*
*/
@ApiModelProperty("400")
@TableField(value = "case_type")
@JSONField(name = "case_type")
private String caseType;
/**
*
*/
@ApiModelProperty("(2018)京73行初3426号")
@TableField(value = "c_ah")
@JSONField(name = "c_ah")
private String cAh;
/**
*后续标识
*/
@ApiModelProperty("后续标识")
@TableField(value = "next_ajbs")
private String nextAjbs;
@TableField(exist = false)
private CaseTree next;
}