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.
88 lines
1.7 KiB
Java
88 lines
1.7 KiB
Java
package com.supervision.police.domain;
|
|
|
|
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 java.io.Serializable;
|
|
import java.time.LocalDateTime;
|
|
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
|
import lombok.Data;
|
|
|
|
/**
|
|
* 银行流水证据属性
|
|
* @TableName attribute_yhls
|
|
*/
|
|
@TableName(value ="attribute_yhls")
|
|
@Data
|
|
public class AttributeYhls implements Serializable {
|
|
/**
|
|
* 主键
|
|
*/
|
|
private String id;
|
|
|
|
/**
|
|
* 证据id
|
|
*/
|
|
private String evidenceId;
|
|
|
|
/**
|
|
* 账户信息
|
|
*/
|
|
@Schema(description = "账户信息", type = "1")
|
|
private String accountInformation;
|
|
|
|
/**
|
|
* 对方账户信息
|
|
*/
|
|
@Schema(description = "对方账户信息", type = "1")
|
|
private String otherAccountInformation;
|
|
|
|
/**
|
|
* 金额
|
|
*/
|
|
@Schema(description = "金额", type = "2")
|
|
private String amount;
|
|
|
|
/**
|
|
* 交易时间
|
|
*/
|
|
@Schema(description = "交易时间", type = "3")
|
|
private String tradingTime;
|
|
|
|
/**
|
|
* 收入支出标识
|
|
*/
|
|
@Schema(description = "收入支出标识", type = "1")
|
|
private String revenueExpenditureIdentification;
|
|
|
|
/**
|
|
* 摘要
|
|
*/
|
|
@Schema(description = "摘要", type = "1")
|
|
private String abstractInfo;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private LocalDateTime createTime;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private String createUserId;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private LocalDateTime updateTime;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private String updateUserId;
|
|
|
|
@TableField(exist = false)
|
|
private static final long serialVersionUID = 1L;
|
|
} |