package com.highdatas.mdm.entity;
|
|
import com.baomidou.mybatisplus.activerecord.Model;
|
import com.baomidou.mybatisplus.annotations.TableField;
|
import com.baomidou.mybatisplus.annotations.TableName;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* <p>
|
*
|
* </p>
|
*
|
* @author kimi
|
* @since 2019-12-16
|
*/
|
@TableName("maintain")
|
@Data
|
public class Maintain extends Model<Maintain> {
|
|
private static final long serialVersionUID = 1L;
|
|
private String id;
|
|
|
@TableField("table_name")
|
private String tableName;
|
|
@TableField("flow_id")
|
private String flowId;
|
|
@TableField("charge_id")
|
private String chargeId;
|
|
private String desp;
|
|
private String version;
|
|
@TableField("order_no")
|
private Integer orderNo;
|
|
@TableField("create_time")
|
private Date createTime;
|
|
|
@Override
|
protected Serializable pkVal() {
|
return this.id;
|
}
|
|
@Override
|
public String toString() {
|
return "Maintain{" +
|
"id=" + id +
|
", tableName=" + tableName +
|
", flowId=" + flowId +
|
", chargeId=" + chargeId +
|
", desp=" + desp +
|
", version=" + version +
|
", createTime=" + createTime +
|
"}";
|
}
|
}
|