| | |
| | | package com.yeshi.fanli.entity.bus.recommend;
|
| | |
|
| | | import javax.persistence.Column;
|
| | | import javax.persistence.Entity;
|
| | | import javax.persistence.GeneratedValue;
|
| | | import javax.persistence.GenerationType;
|
| | | import javax.persistence.Id;
|
| | | import javax.persistence.Table;
|
| | | @Entity
|
| | | @Table(name="yeshi_ec_mask_key")
|
| | | public class MaskKey {
|
| | | @Id
|
| | | @GeneratedValue(strategy=GenerationType.AUTO)
|
| | | @Column(name="`id`")
|
| | | private long id;
|
| | | private String content;
|
| | | public MaskKey() {
|
| | | |
| | | }
|
| | | |
| | | public MaskKey(String content) {
|
| | | super();
|
| | | this.content = content;
|
| | | }
|
| | |
|
| | |
|
| | | public MaskKey(long id) {
|
| | | super();
|
| | | this.id = id;
|
| | | }
|
| | |
|
| | | public long getId() {
|
| | | return id;
|
| | | }
|
| | | public void setId(long id) {
|
| | | this.id = id;
|
| | | }
|
| | | public String getContent() {
|
| | | return content;
|
| | | }
|
| | | public void setContent(String content) {
|
| | | this.content = content;
|
| | | }
|
| | | |
| | | |
| | | }
|
| | | package com.yeshi.fanli.entity.bus.recommend; |
| | | |
| | | import org.yeshi.utils.generater.mybatis.Column; |
| | | import org.yeshi.utils.generater.mybatis.Table; |
| | | |
| | | /** |
| | | * 铭感词库 |
| | | * |
| | | * @author Administrator |
| | | * |
| | | */ |
| | | @Table("yeshi_ec_mask_key") |
| | | public class MaskKey { |
| | | |
| | | @Column(name = "id") |
| | | private long id; |
| | | @Column(name = "content") |
| | | private String content; |
| | | |
| | | |
| | | public MaskKey() { |
| | | |
| | | } |
| | | |
| | | public MaskKey(String content) { |
| | | super(); |
| | | this.content = content; |
| | | } |
| | | |
| | | public MaskKey(long id) { |
| | | super(); |
| | | this.id = id; |
| | | } |
| | | |
| | | public long getId() { |
| | | return id; |
| | | } |
| | | |
| | | public void setId(long id) { |
| | | this.id = id; |
| | | } |
| | | |
| | | public String getContent() { |
| | | return content; |
| | | } |
| | | |
| | | public void setContent(String content) { |
| | | this.content = content; |
| | | } |
| | | |
| | | } |