| | |
| | | package com.yeshi.fanli.entity.system;
|
| | |
|
| | | import java.io.Serializable;
|
| | |
|
| | | import org.yeshi.utils.mybatis.Column;
|
| | | import org.yeshi.utils.mybatis.Table;
|
| | |
|
| | | import com.google.gson.annotations.Expose;
|
| | |
|
| | | /**
|
| | | * �?��返回给客户端的参�?
|
| | | * |
| | | * @author Administrator
|
| | | *
|
| | | */
|
| | | @Table("yeshi_ec_system_clientparams")
|
| | | public class SystemClientParams implements Serializable{
|
| | | /**
|
| | | * |
| | | */
|
| | | private static final long serialVersionUID = 1L;
|
| | | |
| | | |
| | | @Column(name = "id")
|
| | | private Long id;
|
| | | |
| | | @Column(name = "systemid")
|
| | | private BusinessSystem system;
|
| | | |
| | | @Column(name = "key")
|
| | | @Expose
|
| | | private String key;
|
| | | |
| | | @Expose
|
| | | @Column(name = "value")
|
| | | private String value;
|
| | | |
| | | @Expose
|
| | | @Column(name = "name")
|
| | | private String name;
|
| | | |
| | | @Expose
|
| | | @Column(name = "updatetime")
|
| | | private Long updatetime;
|
| | | |
| | |
|
| | | public SystemClientParams() {
|
| | | }
|
| | | |
| | | public SystemClientParams(BusinessSystem system, String key, String value) {
|
| | | super();
|
| | | this.system = system;
|
| | | this.key = key;
|
| | | this.value = value;
|
| | | }
|
| | |
|
| | | public Long getId() {
|
| | | return id;
|
| | | }
|
| | |
|
| | | public void setId(Long id) {
|
| | | this.id = id;
|
| | | }
|
| | |
|
| | | public BusinessSystem getSystem() {
|
| | | return system;
|
| | | }
|
| | |
|
| | | public void setSystem(BusinessSystem system) {
|
| | | this.system = system;
|
| | | }
|
| | |
|
| | | public String getKey() {
|
| | | return key;
|
| | | }
|
| | |
|
| | | public void setKey(String key) {
|
| | | this.key = key;
|
| | | }
|
| | |
|
| | | public String getValue() {
|
| | | return value;
|
| | | }
|
| | |
|
| | | public void setValue(String value) {
|
| | | this.value = value;
|
| | | }
|
| | |
|
| | | public String getName() {
|
| | | return name;
|
| | | }
|
| | |
|
| | | public void setName(String name) {
|
| | | this.name = name;
|
| | | }
|
| | |
|
| | | public Long getUpdatetime() {
|
| | | return updatetime;
|
| | | }
|
| | |
|
| | | public void setUpdatetime(Long updatetime) {
|
| | | this.updatetime = updatetime;
|
| | | }
|
| | | }
|
| | | package com.yeshi.fanli.entity.system; |
| | | |
| | | import java.io.Serializable; |
| | | |
| | | import com.yeshi.fanli.entity.SystemEnum; |
| | | import org.yeshi.utils.generater.mybatis.Column; |
| | | import org.yeshi.utils.generater.mybatis.Table; |
| | | |
| | | import com.google.gson.annotations.Expose; |
| | | |
| | | /** |
| | | * �?��返回给客户端的参�? |
| | | * |
| | | * @author Administrator |
| | | * |
| | | */ |
| | | @Table("yeshi_ec_system_clientparams") |
| | | public class SystemClientParams implements Serializable { |
| | | /** |
| | | * |
| | | */ |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @Column(name = "id") |
| | | private Long id; |
| | | |
| | | @Column(name = "systemid") |
| | | private BusinessSystem system; |
| | | |
| | | @Column(name = "key") |
| | | @Expose |
| | | private String key; |
| | | |
| | | @Expose |
| | | @Column(name = "value") |
| | | private String value; |
| | | |
| | | // @Expose |
| | | @Column(name = "name") |
| | | private String name; |
| | | |
| | | // @Expose |
| | | @Column(name = "updatetime") |
| | | private Long updatetime; |
| | | |
| | | @Column(name = "min_version") |
| | | private Integer minVersion; |
| | | |
| | | private String version; |
| | | |
| | | public String getVersion() { |
| | | return version; |
| | | } |
| | | |
| | | public void setVersion(String version) { |
| | | this.version = version; |
| | | } |
| | | |
| | | public Integer getMinVersion() { |
| | | return minVersion; |
| | | } |
| | | |
| | | public void setMinVersion(Integer minVersion) { |
| | | this.minVersion = minVersion; |
| | | } |
| | | |
| | | public SystemClientParams() { |
| | | } |
| | | |
| | | public SystemClientParams(BusinessSystem system, String key, String value) { |
| | | super(); |
| | | this.system = system; |
| | | this.key = key; |
| | | this.value = value; |
| | | } |
| | | |
| | | public Long getId() { |
| | | return id; |
| | | } |
| | | |
| | | public void setId(Long id) { |
| | | this.id = id; |
| | | } |
| | | |
| | | public BusinessSystem getSystem() { |
| | | return system; |
| | | } |
| | | |
| | | public void setSystem(BusinessSystem system) { |
| | | this.system = system; |
| | | } |
| | | |
| | | public String getKey() { |
| | | return key; |
| | | } |
| | | |
| | | public void setKey(String key) { |
| | | this.key = key; |
| | | } |
| | | |
| | | public String getValue() { |
| | | return value; |
| | | } |
| | | |
| | | public void setValue(String value) { |
| | | this.value = value; |
| | | } |
| | | |
| | | public String getName() { |
| | | return name; |
| | | } |
| | | |
| | | public void setName(String name) { |
| | | this.name = name; |
| | | } |
| | | |
| | | public Long getUpdatetime() { |
| | | return updatetime; |
| | | } |
| | | |
| | | public void setUpdatetime(Long updatetime) { |
| | | this.updatetime = updatetime; |
| | | } |
| | | } |