| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401 |
- package com.goafanti.common.model;
- import java.util.Date;
- public class MessageFromSystem {
- /**
- *
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column message_from_system.id
- *
- * @mbg.generated Thu Dec 14 21:04:23 CST 2017
- */
- private String id;
- /**
- *
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column message_from_system.creater
- *
- * @mbg.generated Thu Dec 14 21:04:23 CST 2017
- */
- private String creater;
- /**
- *
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column message_from_system.create_time
- *
- * @mbg.generated Thu Dec 14 21:04:23 CST 2017
- */
- private Date createTime;
- /**
- *
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column message_from_system.update_time
- *
- * @mbg.generated Thu Dec 14 21:04:23 CST 2017
- */
- private Date updateTime;
- /**
- *
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column message_from_system.producer_id
- *
- * @mbg.generated Thu Dec 14 21:04:23 CST 2017
- */
- private String producerId;
- /**
- *
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column message_from_system.consumer_type
- *
- * @mbg.generated Thu Dec 14 21:04:23 CST 2017
- */
- private Integer consumerType;
- /**
- *
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column message_from_system.title
- *
- * @mbg.generated Thu Dec 14 21:04:23 CST 2017
- */
- private String title;
- /**
- *
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column message_from_system.body
- *
- * @mbg.generated Thu Dec 14 21:04:23 CST 2017
- */
- private String body;
- /**
- *
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column message_from_system.subject
- *
- * @mbg.generated Thu Dec 14 21:04:23 CST 2017
- */
- private Integer subject;
- /**
- *
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column message_from_system.resource_id
- *
- * @mbg.generated Thu Dec 14 21:04:23 CST 2017
- */
- private String resourceId;
- /**
- *
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column message_from_system.resource_type
- *
- * @mbg.generated Thu Dec 14 21:04:23 CST 2017
- */
- private Integer resourceType;
- /**
- *
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column message_from_system.delete_sign
- *
- * @mbg.generated Thu Dec 14 21:04:23 CST 2017
- */
- private Boolean deleteSign;
- /**
- * This method was generated by MyBatis Generator.
- * This method returns the value of the database column message_from_system.id
- *
- * @return the value of message_from_system.id
- *
- * @mbg.generated Thu Dec 14 21:04:23 CST 2017
- */
- public String getId() {
- return id;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column message_from_system.id
- *
- * @param id the value for message_from_system.id
- *
- * @mbg.generated Thu Dec 14 21:04:23 CST 2017
- */
- public void setId(String id) {
- this.id = id;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method returns the value of the database column message_from_system.creater
- *
- * @return the value of message_from_system.creater
- *
- * @mbg.generated Thu Dec 14 21:04:23 CST 2017
- */
- public String getCreater() {
- return creater;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column message_from_system.creater
- *
- * @param creater the value for message_from_system.creater
- *
- * @mbg.generated Thu Dec 14 21:04:23 CST 2017
- */
- public void setCreater(String creater) {
- this.creater = creater;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method returns the value of the database column message_from_system.create_time
- *
- * @return the value of message_from_system.create_time
- *
- * @mbg.generated Thu Dec 14 21:04:23 CST 2017
- */
- public Date getCreateTime() {
- return createTime;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column message_from_system.create_time
- *
- * @param createTime the value for message_from_system.create_time
- *
- * @mbg.generated Thu Dec 14 21:04:23 CST 2017
- */
- public void setCreateTime(Date createTime) {
- this.createTime = createTime;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method returns the value of the database column message_from_system.update_time
- *
- * @return the value of message_from_system.update_time
- *
- * @mbg.generated Thu Dec 14 21:04:23 CST 2017
- */
- public Date getUpdateTime() {
- return updateTime;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column message_from_system.update_time
- *
- * @param updateTime the value for message_from_system.update_time
- *
- * @mbg.generated Thu Dec 14 21:04:23 CST 2017
- */
- public void setUpdateTime(Date updateTime) {
- this.updateTime = updateTime;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method returns the value of the database column message_from_system.producer_id
- *
- * @return the value of message_from_system.producer_id
- *
- * @mbg.generated Thu Dec 14 21:04:23 CST 2017
- */
- public String getProducerId() {
- return producerId;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column message_from_system.producer_id
- *
- * @param producerId the value for message_from_system.producer_id
- *
- * @mbg.generated Thu Dec 14 21:04:23 CST 2017
- */
- public void setProducerId(String producerId) {
- this.producerId = producerId;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method returns the value of the database column message_from_system.consumer_type
- *
- * @return the value of message_from_system.consumer_type
- *
- * @mbg.generated Thu Dec 14 21:04:23 CST 2017
- */
- public Integer getConsumerType() {
- return consumerType;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column message_from_system.consumer_type
- *
- * @param consumerType the value for message_from_system.consumer_type
- *
- * @mbg.generated Thu Dec 14 21:04:23 CST 2017
- */
- public void setConsumerType(Integer consumerType) {
- this.consumerType = consumerType;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method returns the value of the database column message_from_system.title
- *
- * @return the value of message_from_system.title
- *
- * @mbg.generated Thu Dec 14 21:04:23 CST 2017
- */
- public String getTitle() {
- return title;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column message_from_system.title
- *
- * @param title the value for message_from_system.title
- *
- * @mbg.generated Thu Dec 14 21:04:23 CST 2017
- */
- public void setTitle(String title) {
- this.title = title;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method returns the value of the database column message_from_system.body
- *
- * @return the value of message_from_system.body
- *
- * @mbg.generated Thu Dec 14 21:04:23 CST 2017
- */
- public String getBody() {
- return body;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column message_from_system.body
- *
- * @param body the value for message_from_system.body
- *
- * @mbg.generated Thu Dec 14 21:04:23 CST 2017
- */
- public void setBody(String body) {
- this.body = body;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method returns the value of the database column message_from_system.subject
- *
- * @return the value of message_from_system.subject
- *
- * @mbg.generated Thu Dec 14 21:04:23 CST 2017
- */
- public Integer getSubject() {
- return subject;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column message_from_system.subject
- *
- * @param subject the value for message_from_system.subject
- *
- * @mbg.generated Thu Dec 14 21:04:23 CST 2017
- */
- public void setSubject(Integer subject) {
- this.subject = subject;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method returns the value of the database column message_from_system.resource_id
- *
- * @return the value of message_from_system.resource_id
- *
- * @mbg.generated Thu Dec 14 21:04:23 CST 2017
- */
- public String getResourceId() {
- return resourceId;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column message_from_system.resource_id
- *
- * @param resourceId the value for message_from_system.resource_id
- *
- * @mbg.generated Thu Dec 14 21:04:23 CST 2017
- */
- public void setResourceId(String resourceId) {
- this.resourceId = resourceId;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method returns the value of the database column message_from_system.resource_type
- *
- * @return the value of message_from_system.resource_type
- *
- * @mbg.generated Thu Dec 14 21:04:23 CST 2017
- */
- public Integer getResourceType() {
- return resourceType;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column message_from_system.resource_type
- *
- * @param resourceType the value for message_from_system.resource_type
- *
- * @mbg.generated Thu Dec 14 21:04:23 CST 2017
- */
- public void setResourceType(Integer resourceType) {
- this.resourceType = resourceType;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method returns the value of the database column message_from_system.delete_sign
- *
- * @return the value of message_from_system.delete_sign
- *
- * @mbg.generated Thu Dec 14 21:04:23 CST 2017
- */
- public Boolean getDeleteSign() {
- return deleteSign;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column message_from_system.delete_sign
- *
- * @param deleteSign the value for message_from_system.delete_sign
- *
- * @mbg.generated Thu Dec 14 21:04:23 CST 2017
- */
- public void setDeleteSign(Boolean deleteSign) {
- this.deleteSign = deleteSign;
- }
- }
|