|
|
@@ -1,81 +0,0 @@
|
|
|
-package com.uas.credit.model.corpriskInfo.summary;
|
|
|
-
|
|
|
-import javax.persistence.*;
|
|
|
-import java.io.Serializable;
|
|
|
-import java.util.Date;
|
|
|
-
|
|
|
-/**
|
|
|
- * 网贷逾期概要信息
|
|
|
- * created by shicr on 2018/6/12
|
|
|
- **/
|
|
|
-@Entity
|
|
|
-@Table(name = "summary$wdyqs")
|
|
|
-public class Wdyqs implements Serializable {
|
|
|
-
|
|
|
-
|
|
|
- @Id
|
|
|
- @GeneratedValue(strategy = GenerationType.IDENTITY)
|
|
|
- @Column(name = "id")
|
|
|
- private Long id;
|
|
|
-
|
|
|
- /**
|
|
|
- * 记录编号
|
|
|
- */
|
|
|
- @Column(name = "recordId")
|
|
|
- private String recordId;
|
|
|
-
|
|
|
- /**
|
|
|
- * 标题
|
|
|
- */
|
|
|
- @Column(name = "bt")
|
|
|
- private String bt;
|
|
|
-
|
|
|
- /**
|
|
|
- * 公告日期
|
|
|
- */
|
|
|
- @Column(name = "ggrq")
|
|
|
- private Date ggrq;
|
|
|
-
|
|
|
- @ManyToOne(cascade = CascadeType.PERSIST)
|
|
|
- private Summary summary;
|
|
|
-
|
|
|
- public Long getId() {
|
|
|
- return id;
|
|
|
- }
|
|
|
-
|
|
|
- public void setId(Long id) {
|
|
|
- this.id = id;
|
|
|
- }
|
|
|
-
|
|
|
- public String getRecordId() {
|
|
|
- return recordId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setRecordId(String recordId) {
|
|
|
- this.recordId = recordId;
|
|
|
- }
|
|
|
-
|
|
|
- public String getBt() {
|
|
|
- return bt;
|
|
|
- }
|
|
|
-
|
|
|
- public void setBt(String bt) {
|
|
|
- this.bt = bt;
|
|
|
- }
|
|
|
-
|
|
|
- public Date getGgrq() {
|
|
|
- return ggrq;
|
|
|
- }
|
|
|
-
|
|
|
- public void setGgrq(Date ggrq) {
|
|
|
- this.ggrq = ggrq;
|
|
|
- }
|
|
|
-
|
|
|
- public Summary getSummary() {
|
|
|
- return summary;
|
|
|
- }
|
|
|
-
|
|
|
- public void setSummary(Summary summary) {
|
|
|
- this.summary = summary;
|
|
|
- }
|
|
|
-}
|