| | |
| | | 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")
|
| | | import org.yeshi.utils.mybatis.Column;
|
| | | import org.yeshi.utils.mybatis.Table;
|
| | |
|
| | | /**
|
| | | * 铭感词库
|
| | | * |
| | | * @author Administrator
|
| | | *
|
| | | */
|
| | | @Table("yeshi_ec_mask_key")
|
| | | public class MaskKey {
|
| | | @Id
|
| | | @GeneratedValue(strategy=GenerationType.AUTO)
|
| | | @Column(name="`id`")
|
| | | private long id;
|
| | | private String content;
|
| | | public 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();
|
| | |
| | | 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;
|
| | | }
|
| | | |
| | | |
| | |
|
| | | }
|