package com.ycl.entity.caseHandler;
|
|
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;
|
import lombok.EqualsAndHashCode;
|
|
import java.io.Serializable;
|
|
/**
|
* <p>
|
* 违建事件
|
* </p>
|
*
|
* @author wl
|
* @since 2022-09-24
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = false)
|
@TableName("ums_illegal_building")
|
public class IllegalBuilding implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 案件id(同ums_base_case表id)
|
*/
|
@TableId("base_case_id")
|
@ApiModelProperty(value = "案件id(同ums_base_case表id)")
|
private Long baseCaseId;
|
|
/**
|
* 违建类别
|
*/
|
@TableField("category_id")
|
@ApiModelProperty(value = "违建类别")
|
private Integer categoryId;
|
|
/**
|
* 当事人姓名
|
*/
|
@TableField("party_name")
|
@ApiModelProperty(value = "当事人姓名")
|
private String partyName;
|
|
/**
|
* 当事人身份证号码
|
*/
|
@TableField("party_id_card")
|
@ApiModelProperty(value = "当事人身份证号码")
|
private String partyIdCard;
|
|
/**
|
* 当事人联系电话
|
*/
|
@TableField("party_phone")
|
@ApiModelProperty(value = "当事人联系电话")
|
private String partyPhone;
|
|
/**
|
* 身份证正面
|
*/
|
@TableField("positive")
|
@ApiModelProperty(value = "身份证正面")
|
private String positive;
|
|
/**
|
* 身份证反面
|
*/
|
@TableField("negative")
|
@ApiModelProperty(value = "身份证反面")
|
private String negative;
|
|
/**
|
* 违建具体位置
|
*/
|
@TableField("position")
|
@ApiModelProperty(value = "违建具体位置")
|
private String position;
|
|
/**
|
* 违建长
|
*/
|
@TableField("building_length")
|
@ApiModelProperty(value = "违建长")
|
private Float buildingLength;
|
|
/**
|
* 违建宽
|
*/
|
@TableField("building_width")
|
@ApiModelProperty(value = "违建宽")
|
private Float buildingWidth;
|
|
/**
|
* 违建高
|
*/
|
@TableField("building_high")
|
@ApiModelProperty(value = "违建高")
|
private Float buildingHigh;
|
|
/**
|
* 违建面积
|
*/
|
@TableField("building_area")
|
@ApiModelProperty(value = "违建面积")
|
private Float buildingArea;
|
|
/**
|
* 违建材料
|
*/
|
@TableField("materials")
|
@ApiModelProperty(value = "违建材料")
|
private String materials;
|
|
|
}
|