1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- package com.qmth.ops.biz.domain;
- public class AppDTO {
- private Long id;
- private String code;
- private String name;
- private Long masterVersionId;
- private String masterVersionName;
- private Long createTime;
- private Long updateTime;
- public Long getId() {
- return id;
- }
- public void setId(Long id) {
- this.id = id;
- }
- public String getCode() {
- return code;
- }
- public void setCode(String code) {
- this.code = code;
- }
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- public Long getMasterVersionId() {
- return masterVersionId;
- }
- public void setMasterVersionId(Long masterVersionId) {
- this.masterVersionId = masterVersionId;
- }
- public String getMasterVersionName() {
- return masterVersionName;
- }
- public void setMasterVersionName(String masterVersionName) {
- this.masterVersionName = masterVersionName;
- }
- public Long getCreateTime() {
- return createTime;
- }
- public void setCreateTime(Long createTime) {
- this.createTime = createTime;
- }
- public Long getUpdateTime() {
- return updateTime;
- }
- public void setUpdateTime(Long updateTime) {
- this.updateTime = updateTime;
- }
- }
|