| | |
| | | *
|
| | | */
|
| | | @Table("yeshi_ec_system_clientparams")
|
| | | public class SystemClientParams implements Serializable{
|
| | | 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
|
| | |
|
| | | // @Expose
|
| | | @Column(name = "name")
|
| | | private String name;
|
| | | |
| | | @Expose
|
| | |
|
| | | // @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;
|