| | |
| | | package com.yeshi.fanli.entity.bus.user;
|
| | |
|
| | | import javax.persistence.Entity;
|
| | | import javax.persistence.FetchType;
|
| | | import javax.persistence.GeneratedValue;
|
| | | import javax.persistence.GenerationType;
|
| | | import javax.persistence.Id;
|
| | |
| | | import javax.persistence.Transient;
|
| | |
|
| | | import com.google.gson.annotations.Expose;
|
| | |
|
| | | import org.hibernate.annotations.LazyToOne;
|
| | | import org.hibernate.metamodel.binding.CascadeType;
|
| | | import org.springframework.context.annotation.Lazy;
|
| | | import org.yeshi.utils.mybatis.Column;
|
| | |
|
| | | /**
|
| | |
| | | @org.yeshi.utils.mybatis.Table("yeshi_ec_account_details")
|
| | | public class AccountDetails {
|
| | |
|
| | | public AccountDetails(Long id) {
|
| | | this.id = id;
|
| | | }
|
| | |
|
| | | public AccountDetails() {
|
| | | }
|
| | |
|
| | | @Id
|
| | | @GeneratedValue(strategy = GenerationType.AUTO)
|
| | | @Column(name = "id")
|