123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- package com.yihu.hos.system.model;
- import java.util.Date;
- /**
- * SystemApp entity. @author MyEclipse Persistence Tools
- */
- public class SystemApp implements java.io.Serializable {
- // Fields
- private String id;
- private String code; //Ӣ����
- private String name;
- private String appKey;
- private String appType;
- private String orgId;
- private String status;
- private String appUrl;
- private String appSecret;
- private String icon;
- private String developer;
- private Date createDate;
- // Constructors
- /** default constructor */
- public SystemApp() {
- }
- /** minimal constructor */
- public SystemApp(String name) {
- this.name = name;
- }
- // Property accessors
- public String getId() {
- return this.id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getCode() {
- return this.code;
- }
- public void setCode(String code) {
- this.code = code;
- }
- public String getName() {
- return this.name;
- }
- public void setName(String name) {
- this.name = name;
- }
- public String getAppKey() {
- return this.appKey;
- }
- public void setAppKey(String appKey) {
- this.appKey = appKey;
- }
- public String getAppType() {
- return this.appType;
- }
- public void setAppType(String appType) {
- this.appType = appType;
- }
- public String getOrgId() {
- return this.orgId;
- }
- public void setOrgId(String orgId) {
- this.orgId = orgId;
- }
- public String getStatus() {
- return this.status;
- }
- public void setStatus(String status) {
- this.status = status;
- }
- public String getAppUrl() {
- return this.appUrl;
- }
- public void setAppUrl(String appUrl) {
- this.appUrl = appUrl;
- }
- public String getAppSecret() {
- return appSecret;
- }
- public void setAppSecret(String appSecret) {
- this.appSecret = appSecret;
- }
- public String getIcon() {
- return icon;
- }
- public void setIcon(String icon) {
- this.icon = icon;
- }
- public String getDeveloper() {
- return developer;
- }
- public void setDeveloper(String developer) {
- this.developer = developer;
- }
- public Date getCreateDate() {
- return createDate;
- }
- public void setCreateDate(Date createDate) {
- this.createDate = createDate;
- }
- }
|