| | |
| | | import java.util.Date;
|
| | | import java.util.List;
|
| | |
|
| | | import javax.persistence.Column;
|
| | | import javax.persistence.Entity;
|
| | | import javax.persistence.GeneratedValue;
|
| | | import javax.persistence.GenerationType;
|
| | | import javax.persistence.Id;
|
| | | import javax.persistence.Table;
|
| | | import javax.persistence.Transient;
|
| | | import org.yeshi.utils.mybatis.Column;
|
| | | import org.yeshi.utils.mybatis.Table;
|
| | |
|
| | | import com.google.gson.annotations.Expose;
|
| | |
|
| | | @Entity
|
| | | @Table(name = "yeshi_ec_customer_name")
|
| | | @Table("yeshi_ec_customer_name")
|
| | | public class CustomerName {
|
| | |
|
| | | @Id
|
| | | @GeneratedValue(strategy = GenerationType.AUTO)
|
| | | @Column(name = "id")
|
| | | @Expose
|
| | | private long id;
|
| | | private Long id;
|
| | |
|
| | | @Column(name = "name")
|
| | | private String name;
|
| | |
| | | @Column(name = "type")
|
| | | private Integer type; // 1:帮助中心 2:关于我们 3:返利详情用户协议 4:联系客服
|
| | |
|
| | | @Transient
|
| | |
|
| | | private List<CustomerContent> customerContentList;//一级标题下面的二级标题内容
|
| | |
|
| | |
|
| | |
|
| | | public long getId() {
|
| | | public Long getId() {
|
| | | return id;
|
| | | }
|
| | |
|
| | | public void setId(long id) {
|
| | | public void setId(Long id) {
|
| | | this.id = id;
|
| | | }
|
| | |
|