You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
583 B

package com.fr.plugin.entity;
import com.fr.stable.db.entity.BaseEntity;
import com.fr.third.javax.persistence.Column;
import com.fr.third.javax.persistence.Entity;
import com.fr.third.javax.persistence.Table;
@Entity
@Table(
name = "fr_sms_config"
)
public class SMSConfigEntity extends BaseEntity {
@Column(
name = "content"
, length = 1000, nullable = false
)
private String content;
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
}