提交
This commit is contained in:
@@ -0,0 +1,108 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
|
||||
public class SysDept implements Serializable {
|
||||
private Long deptId;
|
||||
|
||||
private Long pid;
|
||||
|
||||
private Integer subCount;
|
||||
|
||||
private String name;
|
||||
|
||||
private Integer deptSort;
|
||||
|
||||
private Boolean enabled;
|
||||
|
||||
private String createBy;
|
||||
|
||||
private String updateBy;
|
||||
|
||||
private Date createTime;
|
||||
|
||||
private Date updateTime;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public Long getDeptId() {
|
||||
return deptId;
|
||||
}
|
||||
|
||||
public void setDeptId(Long deptId) {
|
||||
this.deptId = deptId;
|
||||
}
|
||||
|
||||
public Long getPid() {
|
||||
return pid;
|
||||
}
|
||||
|
||||
public void setPid(Long pid) {
|
||||
this.pid = pid;
|
||||
}
|
||||
|
||||
public Integer getSubCount() {
|
||||
return subCount;
|
||||
}
|
||||
|
||||
public void setSubCount(Integer subCount) {
|
||||
this.subCount = subCount;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name == null ? null : name.trim();
|
||||
}
|
||||
|
||||
public Integer getDeptSort() {
|
||||
return deptSort;
|
||||
}
|
||||
|
||||
public void setDeptSort(Integer deptSort) {
|
||||
this.deptSort = deptSort;
|
||||
}
|
||||
|
||||
public Boolean getEnabled() {
|
||||
return enabled;
|
||||
}
|
||||
|
||||
public void setEnabled(Boolean enabled) {
|
||||
this.enabled = enabled;
|
||||
}
|
||||
|
||||
public String getCreateBy() {
|
||||
return createBy;
|
||||
}
|
||||
|
||||
public void setCreateBy(String createBy) {
|
||||
this.createBy = createBy == null ? null : createBy.trim();
|
||||
}
|
||||
|
||||
public String getUpdateBy() {
|
||||
return updateBy;
|
||||
}
|
||||
|
||||
public void setUpdateBy(String updateBy) {
|
||||
this.updateBy = updateBy == null ? null : updateBy.trim();
|
||||
}
|
||||
|
||||
public Date getCreateTime() {
|
||||
return createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Date createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public Date getUpdateTime() {
|
||||
return updateTime;
|
||||
}
|
||||
|
||||
public void setUpdateTime(Date updateTime) {
|
||||
this.updateTime = updateTime;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,78 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
|
||||
public class SysDict implements Serializable {
|
||||
private Long dictId;
|
||||
|
||||
private String name;
|
||||
|
||||
private String description;
|
||||
|
||||
private String createBy;
|
||||
|
||||
private String updateBy;
|
||||
|
||||
private Date createTime;
|
||||
|
||||
private Date updateTime;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public Long getDictId() {
|
||||
return dictId;
|
||||
}
|
||||
|
||||
public void setDictId(Long dictId) {
|
||||
this.dictId = dictId;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name == null ? null : name.trim();
|
||||
}
|
||||
|
||||
public String getDescription() {
|
||||
return description;
|
||||
}
|
||||
|
||||
public void setDescription(String description) {
|
||||
this.description = description == null ? null : description.trim();
|
||||
}
|
||||
|
||||
public String getCreateBy() {
|
||||
return createBy;
|
||||
}
|
||||
|
||||
public void setCreateBy(String createBy) {
|
||||
this.createBy = createBy == null ? null : createBy.trim();
|
||||
}
|
||||
|
||||
public String getUpdateBy() {
|
||||
return updateBy;
|
||||
}
|
||||
|
||||
public void setUpdateBy(String updateBy) {
|
||||
this.updateBy = updateBy == null ? null : updateBy.trim();
|
||||
}
|
||||
|
||||
public Date getCreateTime() {
|
||||
return createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Date createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public Date getUpdateTime() {
|
||||
return updateTime;
|
||||
}
|
||||
|
||||
public void setUpdateTime(Date updateTime) {
|
||||
this.updateTime = updateTime;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,98 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
|
||||
public class SysDictDetail implements Serializable {
|
||||
private Long detailId;
|
||||
|
||||
private Long dictId;
|
||||
|
||||
private String label;
|
||||
|
||||
private String value;
|
||||
|
||||
private Integer dictSort;
|
||||
|
||||
private String createBy;
|
||||
|
||||
private String updateBy;
|
||||
|
||||
private Date createTime;
|
||||
|
||||
private Date updateTime;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public Long getDetailId() {
|
||||
return detailId;
|
||||
}
|
||||
|
||||
public void setDetailId(Long detailId) {
|
||||
this.detailId = detailId;
|
||||
}
|
||||
|
||||
public Long getDictId() {
|
||||
return dictId;
|
||||
}
|
||||
|
||||
public void setDictId(Long dictId) {
|
||||
this.dictId = dictId;
|
||||
}
|
||||
|
||||
public String getLabel() {
|
||||
return label;
|
||||
}
|
||||
|
||||
public void setLabel(String label) {
|
||||
this.label = label == null ? null : label.trim();
|
||||
}
|
||||
|
||||
public String getValue() {
|
||||
return value;
|
||||
}
|
||||
|
||||
public void setValue(String value) {
|
||||
this.value = value == null ? null : value.trim();
|
||||
}
|
||||
|
||||
public Integer getDictSort() {
|
||||
return dictSort;
|
||||
}
|
||||
|
||||
public void setDictSort(Integer dictSort) {
|
||||
this.dictSort = dictSort;
|
||||
}
|
||||
|
||||
public String getCreateBy() {
|
||||
return createBy;
|
||||
}
|
||||
|
||||
public void setCreateBy(String createBy) {
|
||||
this.createBy = createBy == null ? null : createBy.trim();
|
||||
}
|
||||
|
||||
public String getUpdateBy() {
|
||||
return updateBy;
|
||||
}
|
||||
|
||||
public void setUpdateBy(String updateBy) {
|
||||
this.updateBy = updateBy == null ? null : updateBy.trim();
|
||||
}
|
||||
|
||||
public Date getCreateTime() {
|
||||
return createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Date createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public Date getUpdateTime() {
|
||||
return updateTime;
|
||||
}
|
||||
|
||||
public void setUpdateTime(Date updateTime) {
|
||||
this.updateTime = updateTime;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,88 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
|
||||
public class SysJob implements Serializable {
|
||||
private Long jobId;
|
||||
|
||||
private String name;
|
||||
|
||||
private Boolean enabled;
|
||||
|
||||
private Integer jobSort;
|
||||
|
||||
private String createBy;
|
||||
|
||||
private String updateBy;
|
||||
|
||||
private Date createTime;
|
||||
|
||||
private Date updateTime;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public Long getJobId() {
|
||||
return jobId;
|
||||
}
|
||||
|
||||
public void setJobId(Long jobId) {
|
||||
this.jobId = jobId;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name == null ? null : name.trim();
|
||||
}
|
||||
|
||||
public Boolean getEnabled() {
|
||||
return enabled;
|
||||
}
|
||||
|
||||
public void setEnabled(Boolean enabled) {
|
||||
this.enabled = enabled;
|
||||
}
|
||||
|
||||
public Integer getJobSort() {
|
||||
return jobSort;
|
||||
}
|
||||
|
||||
public void setJobSort(Integer jobSort) {
|
||||
this.jobSort = jobSort;
|
||||
}
|
||||
|
||||
public String getCreateBy() {
|
||||
return createBy;
|
||||
}
|
||||
|
||||
public void setCreateBy(String createBy) {
|
||||
this.createBy = createBy == null ? null : createBy.trim();
|
||||
}
|
||||
|
||||
public String getUpdateBy() {
|
||||
return updateBy;
|
||||
}
|
||||
|
||||
public void setUpdateBy(String updateBy) {
|
||||
this.updateBy = updateBy == null ? null : updateBy.trim();
|
||||
}
|
||||
|
||||
public Date getCreateTime() {
|
||||
return createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Date createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public Date getUpdateTime() {
|
||||
return updateTime;
|
||||
}
|
||||
|
||||
public void setUpdateTime(Date updateTime) {
|
||||
this.updateTime = updateTime;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,108 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
|
||||
public class SysLog implements Serializable {
|
||||
private Long logId;
|
||||
|
||||
private String description;
|
||||
|
||||
private String logType;
|
||||
|
||||
private String method;
|
||||
|
||||
private String requestIp;
|
||||
|
||||
private Long time;
|
||||
|
||||
private String username;
|
||||
|
||||
private String address;
|
||||
|
||||
private String browser;
|
||||
|
||||
private Date createTime;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public Long getLogId() {
|
||||
return logId;
|
||||
}
|
||||
|
||||
public void setLogId(Long logId) {
|
||||
this.logId = logId;
|
||||
}
|
||||
|
||||
public String getDescription() {
|
||||
return description;
|
||||
}
|
||||
|
||||
public void setDescription(String description) {
|
||||
this.description = description == null ? null : description.trim();
|
||||
}
|
||||
|
||||
public String getLogType() {
|
||||
return logType;
|
||||
}
|
||||
|
||||
public void setLogType(String logType) {
|
||||
this.logType = logType == null ? null : logType.trim();
|
||||
}
|
||||
|
||||
public String getMethod() {
|
||||
return method;
|
||||
}
|
||||
|
||||
public void setMethod(String method) {
|
||||
this.method = method == null ? null : method.trim();
|
||||
}
|
||||
|
||||
public String getRequestIp() {
|
||||
return requestIp;
|
||||
}
|
||||
|
||||
public void setRequestIp(String requestIp) {
|
||||
this.requestIp = requestIp == null ? null : requestIp.trim();
|
||||
}
|
||||
|
||||
public Long getTime() {
|
||||
return time;
|
||||
}
|
||||
|
||||
public void setTime(Long time) {
|
||||
this.time = time;
|
||||
}
|
||||
|
||||
public String getUsername() {
|
||||
return username;
|
||||
}
|
||||
|
||||
public void setUsername(String username) {
|
||||
this.username = username == null ? null : username.trim();
|
||||
}
|
||||
|
||||
public String getAddress() {
|
||||
return address;
|
||||
}
|
||||
|
||||
public void setAddress(String address) {
|
||||
this.address = address == null ? null : address.trim();
|
||||
}
|
||||
|
||||
public String getBrowser() {
|
||||
return browser;
|
||||
}
|
||||
|
||||
public void setBrowser(String browser) {
|
||||
this.browser = browser == null ? null : browser.trim();
|
||||
}
|
||||
|
||||
public Date getCreateTime() {
|
||||
return createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Date createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,27 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class SysLogWithBLOBs extends SysLog implements Serializable {
|
||||
private String params;
|
||||
|
||||
private String exceptionDetail;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public String getParams() {
|
||||
return params;
|
||||
}
|
||||
|
||||
public void setParams(String params) {
|
||||
this.params = params == null ? null : params.trim();
|
||||
}
|
||||
|
||||
public String getExceptionDetail() {
|
||||
return exceptionDetail;
|
||||
}
|
||||
|
||||
public void setExceptionDetail(String exceptionDetail) {
|
||||
this.exceptionDetail = exceptionDetail == null ? null : exceptionDetail.trim();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,198 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
|
||||
public class SysMenu implements Serializable {
|
||||
private Long menuId;
|
||||
|
||||
private Long pid;
|
||||
|
||||
private Integer subCount;
|
||||
|
||||
private Integer type;
|
||||
|
||||
private String title;
|
||||
|
||||
private String name;
|
||||
|
||||
private String component;
|
||||
|
||||
private Integer menuSort;
|
||||
|
||||
private String icon;
|
||||
|
||||
private String path;
|
||||
|
||||
private Boolean iFrame;
|
||||
|
||||
private Boolean cache;
|
||||
|
||||
private Boolean hidden;
|
||||
|
||||
private String permission;
|
||||
|
||||
private String createBy;
|
||||
|
||||
private String updateBy;
|
||||
|
||||
private Date createTime;
|
||||
|
||||
private Date updateTime;
|
||||
|
||||
private String activeMenu;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public Long getMenuId() {
|
||||
return menuId;
|
||||
}
|
||||
|
||||
public void setMenuId(Long menuId) {
|
||||
this.menuId = menuId;
|
||||
}
|
||||
|
||||
public Long getPid() {
|
||||
return pid;
|
||||
}
|
||||
|
||||
public void setPid(Long pid) {
|
||||
this.pid = pid;
|
||||
}
|
||||
|
||||
public Integer getSubCount() {
|
||||
return subCount;
|
||||
}
|
||||
|
||||
public void setSubCount(Integer subCount) {
|
||||
this.subCount = subCount;
|
||||
}
|
||||
|
||||
public Integer getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
public void setType(Integer type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public String getTitle() {
|
||||
return title;
|
||||
}
|
||||
|
||||
public void setTitle(String title) {
|
||||
this.title = title == null ? null : title.trim();
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name == null ? null : name.trim();
|
||||
}
|
||||
|
||||
public String getComponent() {
|
||||
return component;
|
||||
}
|
||||
|
||||
public void setComponent(String component) {
|
||||
this.component = component == null ? null : component.trim();
|
||||
}
|
||||
|
||||
public Integer getMenuSort() {
|
||||
return menuSort;
|
||||
}
|
||||
|
||||
public void setMenuSort(Integer menuSort) {
|
||||
this.menuSort = menuSort;
|
||||
}
|
||||
|
||||
public String getIcon() {
|
||||
return icon;
|
||||
}
|
||||
|
||||
public void setIcon(String icon) {
|
||||
this.icon = icon == null ? null : icon.trim();
|
||||
}
|
||||
|
||||
public String getPath() {
|
||||
return path;
|
||||
}
|
||||
|
||||
public void setPath(String path) {
|
||||
this.path = path == null ? null : path.trim();
|
||||
}
|
||||
|
||||
public Boolean getiFrame() {
|
||||
return iFrame;
|
||||
}
|
||||
|
||||
public void setiFrame(Boolean iFrame) {
|
||||
this.iFrame = iFrame;
|
||||
}
|
||||
|
||||
public Boolean getCache() {
|
||||
return cache;
|
||||
}
|
||||
|
||||
public void setCache(Boolean cache) {
|
||||
this.cache = cache;
|
||||
}
|
||||
|
||||
public Boolean getHidden() {
|
||||
return hidden;
|
||||
}
|
||||
|
||||
public void setHidden(Boolean hidden) {
|
||||
this.hidden = hidden;
|
||||
}
|
||||
|
||||
public String getPermission() {
|
||||
return permission;
|
||||
}
|
||||
|
||||
public void setPermission(String permission) {
|
||||
this.permission = permission == null ? null : permission.trim();
|
||||
}
|
||||
|
||||
public String getCreateBy() {
|
||||
return createBy;
|
||||
}
|
||||
|
||||
public void setCreateBy(String createBy) {
|
||||
this.createBy = createBy == null ? null : createBy.trim();
|
||||
}
|
||||
|
||||
public String getUpdateBy() {
|
||||
return updateBy;
|
||||
}
|
||||
|
||||
public void setUpdateBy(String updateBy) {
|
||||
this.updateBy = updateBy == null ? null : updateBy.trim();
|
||||
}
|
||||
|
||||
public Date getCreateTime() {
|
||||
return createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Date createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public Date getUpdateTime() {
|
||||
return updateTime;
|
||||
}
|
||||
|
||||
public void setUpdateTime(Date updateTime) {
|
||||
this.updateTime = updateTime;
|
||||
}
|
||||
|
||||
public String getActiveMenu() {
|
||||
return activeMenu;
|
||||
}
|
||||
|
||||
public void setActiveMenu(String activeMenu) {
|
||||
this.activeMenu = activeMenu == null ? null : activeMenu.trim();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,168 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
|
||||
public class SysQuartzJob implements Serializable {
|
||||
private Long jobId;
|
||||
|
||||
private String beanName;
|
||||
|
||||
private String cronExpression;
|
||||
|
||||
private Boolean isPause;
|
||||
|
||||
private String jobName;
|
||||
|
||||
private String methodName;
|
||||
|
||||
private String params;
|
||||
|
||||
private String description;
|
||||
|
||||
private String personInCharge;
|
||||
|
||||
private String email;
|
||||
|
||||
private String subTask;
|
||||
|
||||
private Boolean pauseAfterFailure;
|
||||
|
||||
private String createBy;
|
||||
|
||||
private String updateBy;
|
||||
|
||||
private Date createTime;
|
||||
|
||||
private Date updateTime;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public Long getJobId() {
|
||||
return jobId;
|
||||
}
|
||||
|
||||
public void setJobId(Long jobId) {
|
||||
this.jobId = jobId;
|
||||
}
|
||||
|
||||
public String getBeanName() {
|
||||
return beanName;
|
||||
}
|
||||
|
||||
public void setBeanName(String beanName) {
|
||||
this.beanName = beanName == null ? null : beanName.trim();
|
||||
}
|
||||
|
||||
public String getCronExpression() {
|
||||
return cronExpression;
|
||||
}
|
||||
|
||||
public void setCronExpression(String cronExpression) {
|
||||
this.cronExpression = cronExpression == null ? null : cronExpression.trim();
|
||||
}
|
||||
|
||||
public Boolean getIsPause() {
|
||||
return isPause;
|
||||
}
|
||||
|
||||
public void setIsPause(Boolean isPause) {
|
||||
this.isPause = isPause;
|
||||
}
|
||||
|
||||
public String getJobName() {
|
||||
return jobName;
|
||||
}
|
||||
|
||||
public void setJobName(String jobName) {
|
||||
this.jobName = jobName == null ? null : jobName.trim();
|
||||
}
|
||||
|
||||
public String getMethodName() {
|
||||
return methodName;
|
||||
}
|
||||
|
||||
public void setMethodName(String methodName) {
|
||||
this.methodName = methodName == null ? null : methodName.trim();
|
||||
}
|
||||
|
||||
public String getParams() {
|
||||
return params;
|
||||
}
|
||||
|
||||
public void setParams(String params) {
|
||||
this.params = params == null ? null : params.trim();
|
||||
}
|
||||
|
||||
public String getDescription() {
|
||||
return description;
|
||||
}
|
||||
|
||||
public void setDescription(String description) {
|
||||
this.description = description == null ? null : description.trim();
|
||||
}
|
||||
|
||||
public String getPersonInCharge() {
|
||||
return personInCharge;
|
||||
}
|
||||
|
||||
public void setPersonInCharge(String personInCharge) {
|
||||
this.personInCharge = personInCharge == null ? null : personInCharge.trim();
|
||||
}
|
||||
|
||||
public String getEmail() {
|
||||
return email;
|
||||
}
|
||||
|
||||
public void setEmail(String email) {
|
||||
this.email = email == null ? null : email.trim();
|
||||
}
|
||||
|
||||
public String getSubTask() {
|
||||
return subTask;
|
||||
}
|
||||
|
||||
public void setSubTask(String subTask) {
|
||||
this.subTask = subTask == null ? null : subTask.trim();
|
||||
}
|
||||
|
||||
public Boolean getPauseAfterFailure() {
|
||||
return pauseAfterFailure;
|
||||
}
|
||||
|
||||
public void setPauseAfterFailure(Boolean pauseAfterFailure) {
|
||||
this.pauseAfterFailure = pauseAfterFailure;
|
||||
}
|
||||
|
||||
public String getCreateBy() {
|
||||
return createBy;
|
||||
}
|
||||
|
||||
public void setCreateBy(String createBy) {
|
||||
this.createBy = createBy == null ? null : createBy.trim();
|
||||
}
|
||||
|
||||
public String getUpdateBy() {
|
||||
return updateBy;
|
||||
}
|
||||
|
||||
public void setUpdateBy(String updateBy) {
|
||||
this.updateBy = updateBy == null ? null : updateBy.trim();
|
||||
}
|
||||
|
||||
public Date getCreateTime() {
|
||||
return createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Date createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public Date getUpdateTime() {
|
||||
return updateTime;
|
||||
}
|
||||
|
||||
public void setUpdateTime(Date updateTime) {
|
||||
this.updateTime = updateTime;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,108 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
|
||||
public class SysQuartzLog implements Serializable {
|
||||
private Long logId;
|
||||
|
||||
private String beanName;
|
||||
|
||||
private Date createTime;
|
||||
|
||||
private String cronExpression;
|
||||
|
||||
private Boolean isSuccess;
|
||||
|
||||
private String jobName;
|
||||
|
||||
private String methodName;
|
||||
|
||||
private String params;
|
||||
|
||||
private Long time;
|
||||
|
||||
private String exceptionDetail;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public Long getLogId() {
|
||||
return logId;
|
||||
}
|
||||
|
||||
public void setLogId(Long logId) {
|
||||
this.logId = logId;
|
||||
}
|
||||
|
||||
public String getBeanName() {
|
||||
return beanName;
|
||||
}
|
||||
|
||||
public void setBeanName(String beanName) {
|
||||
this.beanName = beanName == null ? null : beanName.trim();
|
||||
}
|
||||
|
||||
public Date getCreateTime() {
|
||||
return createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Date createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getCronExpression() {
|
||||
return cronExpression;
|
||||
}
|
||||
|
||||
public void setCronExpression(String cronExpression) {
|
||||
this.cronExpression = cronExpression == null ? null : cronExpression.trim();
|
||||
}
|
||||
|
||||
public Boolean getIsSuccess() {
|
||||
return isSuccess;
|
||||
}
|
||||
|
||||
public void setIsSuccess(Boolean isSuccess) {
|
||||
this.isSuccess = isSuccess;
|
||||
}
|
||||
|
||||
public String getJobName() {
|
||||
return jobName;
|
||||
}
|
||||
|
||||
public void setJobName(String jobName) {
|
||||
this.jobName = jobName == null ? null : jobName.trim();
|
||||
}
|
||||
|
||||
public String getMethodName() {
|
||||
return methodName;
|
||||
}
|
||||
|
||||
public void setMethodName(String methodName) {
|
||||
this.methodName = methodName == null ? null : methodName.trim();
|
||||
}
|
||||
|
||||
public String getParams() {
|
||||
return params;
|
||||
}
|
||||
|
||||
public void setParams(String params) {
|
||||
this.params = params == null ? null : params.trim();
|
||||
}
|
||||
|
||||
public Long getTime() {
|
||||
return time;
|
||||
}
|
||||
|
||||
public void setTime(Long time) {
|
||||
this.time = time;
|
||||
}
|
||||
|
||||
public String getExceptionDetail() {
|
||||
return exceptionDetail;
|
||||
}
|
||||
|
||||
public void setExceptionDetail(String exceptionDetail) {
|
||||
this.exceptionDetail = exceptionDetail == null ? null : exceptionDetail.trim();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,98 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
|
||||
public class SysRole implements Serializable {
|
||||
private Long roleId;
|
||||
|
||||
private String name;
|
||||
|
||||
private Integer level;
|
||||
|
||||
private String description;
|
||||
|
||||
private String dataScope;
|
||||
|
||||
private String createBy;
|
||||
|
||||
private String updateBy;
|
||||
|
||||
private Date createTime;
|
||||
|
||||
private Date updateTime;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public Long getRoleId() {
|
||||
return roleId;
|
||||
}
|
||||
|
||||
public void setRoleId(Long roleId) {
|
||||
this.roleId = roleId;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name == null ? null : name.trim();
|
||||
}
|
||||
|
||||
public Integer getLevel() {
|
||||
return level;
|
||||
}
|
||||
|
||||
public void setLevel(Integer level) {
|
||||
this.level = level;
|
||||
}
|
||||
|
||||
public String getDescription() {
|
||||
return description;
|
||||
}
|
||||
|
||||
public void setDescription(String description) {
|
||||
this.description = description == null ? null : description.trim();
|
||||
}
|
||||
|
||||
public String getDataScope() {
|
||||
return dataScope;
|
||||
}
|
||||
|
||||
public void setDataScope(String dataScope) {
|
||||
this.dataScope = dataScope == null ? null : dataScope.trim();
|
||||
}
|
||||
|
||||
public String getCreateBy() {
|
||||
return createBy;
|
||||
}
|
||||
|
||||
public void setCreateBy(String createBy) {
|
||||
this.createBy = createBy == null ? null : createBy.trim();
|
||||
}
|
||||
|
||||
public String getUpdateBy() {
|
||||
return updateBy;
|
||||
}
|
||||
|
||||
public void setUpdateBy(String updateBy) {
|
||||
this.updateBy = updateBy == null ? null : updateBy.trim();
|
||||
}
|
||||
|
||||
public Date getCreateTime() {
|
||||
return createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Date createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public Date getUpdateTime() {
|
||||
return updateTime;
|
||||
}
|
||||
|
||||
public void setUpdateTime(Date updateTime) {
|
||||
this.updateTime = updateTime;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,27 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class SysRolesDeptsKey implements Serializable {
|
||||
private Long roleId;
|
||||
|
||||
private Long deptId;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public Long getRoleId() {
|
||||
return roleId;
|
||||
}
|
||||
|
||||
public void setRoleId(Long roleId) {
|
||||
this.roleId = roleId;
|
||||
}
|
||||
|
||||
public Long getDeptId() {
|
||||
return deptId;
|
||||
}
|
||||
|
||||
public void setDeptId(Long deptId) {
|
||||
this.deptId = deptId;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,27 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class SysRolesMenusKey implements Serializable {
|
||||
private Long menuId;
|
||||
|
||||
private Long roleId;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public Long getMenuId() {
|
||||
return menuId;
|
||||
}
|
||||
|
||||
public void setMenuId(Long menuId) {
|
||||
this.menuId = menuId;
|
||||
}
|
||||
|
||||
public Long getRoleId() {
|
||||
return roleId;
|
||||
}
|
||||
|
||||
public void setRoleId(Long roleId) {
|
||||
this.roleId = roleId;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,178 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
|
||||
public class SysUser implements Serializable {
|
||||
private Long userId;
|
||||
|
||||
private Long deptId;
|
||||
|
||||
private String username;
|
||||
|
||||
private String nickName;
|
||||
|
||||
private String gender;
|
||||
|
||||
private String phone;
|
||||
|
||||
private String email;
|
||||
|
||||
private String avatarName;
|
||||
|
||||
private String avatarPath;
|
||||
|
||||
private String password;
|
||||
|
||||
private Boolean isAdmin;
|
||||
|
||||
private Long enabled;
|
||||
|
||||
private String createBy;
|
||||
|
||||
private String updateBy;
|
||||
|
||||
private Date pwdResetTime;
|
||||
|
||||
private Date createTime;
|
||||
|
||||
private Date updateTime;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public Long getUserId() {
|
||||
return userId;
|
||||
}
|
||||
|
||||
public void setUserId(Long userId) {
|
||||
this.userId = userId;
|
||||
}
|
||||
|
||||
public Long getDeptId() {
|
||||
return deptId;
|
||||
}
|
||||
|
||||
public void setDeptId(Long deptId) {
|
||||
this.deptId = deptId;
|
||||
}
|
||||
|
||||
public String getUsername() {
|
||||
return username;
|
||||
}
|
||||
|
||||
public void setUsername(String username) {
|
||||
this.username = username == null ? null : username.trim();
|
||||
}
|
||||
|
||||
public String getNickName() {
|
||||
return nickName;
|
||||
}
|
||||
|
||||
public void setNickName(String nickName) {
|
||||
this.nickName = nickName == null ? null : nickName.trim();
|
||||
}
|
||||
|
||||
public String getGender() {
|
||||
return gender;
|
||||
}
|
||||
|
||||
public void setGender(String gender) {
|
||||
this.gender = gender == null ? null : gender.trim();
|
||||
}
|
||||
|
||||
public String getPhone() {
|
||||
return phone;
|
||||
}
|
||||
|
||||
public void setPhone(String phone) {
|
||||
this.phone = phone == null ? null : phone.trim();
|
||||
}
|
||||
|
||||
public String getEmail() {
|
||||
return email;
|
||||
}
|
||||
|
||||
public void setEmail(String email) {
|
||||
this.email = email == null ? null : email.trim();
|
||||
}
|
||||
|
||||
public String getAvatarName() {
|
||||
return avatarName;
|
||||
}
|
||||
|
||||
public void setAvatarName(String avatarName) {
|
||||
this.avatarName = avatarName == null ? null : avatarName.trim();
|
||||
}
|
||||
|
||||
public String getAvatarPath() {
|
||||
return avatarPath;
|
||||
}
|
||||
|
||||
public void setAvatarPath(String avatarPath) {
|
||||
this.avatarPath = avatarPath == null ? null : avatarPath.trim();
|
||||
}
|
||||
|
||||
public String getPassword() {
|
||||
return password;
|
||||
}
|
||||
|
||||
public void setPassword(String password) {
|
||||
this.password = password == null ? null : password.trim();
|
||||
}
|
||||
|
||||
public Boolean getIsAdmin() {
|
||||
return isAdmin;
|
||||
}
|
||||
|
||||
public void setIsAdmin(Boolean isAdmin) {
|
||||
this.isAdmin = isAdmin;
|
||||
}
|
||||
|
||||
public Long getEnabled() {
|
||||
return enabled;
|
||||
}
|
||||
|
||||
public void setEnabled(Long enabled) {
|
||||
this.enabled = enabled;
|
||||
}
|
||||
|
||||
public String getCreateBy() {
|
||||
return createBy;
|
||||
}
|
||||
|
||||
public void setCreateBy(String createBy) {
|
||||
this.createBy = createBy == null ? null : createBy.trim();
|
||||
}
|
||||
|
||||
public String getUpdateBy() {
|
||||
return updateBy;
|
||||
}
|
||||
|
||||
public void setUpdateBy(String updateBy) {
|
||||
this.updateBy = updateBy == null ? null : updateBy.trim();
|
||||
}
|
||||
|
||||
public Date getPwdResetTime() {
|
||||
return pwdResetTime;
|
||||
}
|
||||
|
||||
public void setPwdResetTime(Date pwdResetTime) {
|
||||
this.pwdResetTime = pwdResetTime;
|
||||
}
|
||||
|
||||
public Date getCreateTime() {
|
||||
return createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Date createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public Date getUpdateTime() {
|
||||
return updateTime;
|
||||
}
|
||||
|
||||
public void setUpdateTime(Date updateTime) {
|
||||
this.updateTime = updateTime;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,27 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class SysUsersJobsKey implements Serializable {
|
||||
private Long userId;
|
||||
|
||||
private Long jobId;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public Long getUserId() {
|
||||
return userId;
|
||||
}
|
||||
|
||||
public void setUserId(Long userId) {
|
||||
this.userId = userId;
|
||||
}
|
||||
|
||||
public Long getJobId() {
|
||||
return jobId;
|
||||
}
|
||||
|
||||
public void setJobId(Long jobId) {
|
||||
this.jobId = jobId;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,27 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class SysUsersRolesKey implements Serializable {
|
||||
private Long userId;
|
||||
|
||||
private Long roleId;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public Long getUserId() {
|
||||
return userId;
|
||||
}
|
||||
|
||||
public void setUserId(Long userId) {
|
||||
this.userId = userId;
|
||||
}
|
||||
|
||||
public Long getRoleId() {
|
||||
return roleId;
|
||||
}
|
||||
|
||||
public void setRoleId(Long roleId) {
|
||||
this.roleId = roleId;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,63 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.math.BigDecimal;
|
||||
|
||||
@Data
|
||||
public class TbCashierCart implements Serializable {
|
||||
private Integer id;
|
||||
|
||||
private String masterId;
|
||||
|
||||
private String orderId;
|
||||
|
||||
private String refOrderId;
|
||||
|
||||
private BigDecimal totalAmount;
|
||||
|
||||
private String productId;
|
||||
|
||||
private String coverImg;
|
||||
|
||||
private String isSku;
|
||||
|
||||
private String skuId;
|
||||
|
||||
private String name;
|
||||
private String skuName;
|
||||
|
||||
private BigDecimal salePrice;
|
||||
private BigDecimal packFee;
|
||||
|
||||
private Integer number;
|
||||
|
||||
private Integer totalNumber;
|
||||
|
||||
private Integer refundNumber;
|
||||
|
||||
private String categoryId;
|
||||
private String tradeDay;
|
||||
|
||||
private String status;
|
||||
|
||||
private Byte type;
|
||||
|
||||
private String merchantId;
|
||||
|
||||
private String shopId;
|
||||
private String isPack;
|
||||
private String isGift;
|
||||
private String uuid;
|
||||
|
||||
private Long createdAt;
|
||||
private Long pendingAt;
|
||||
|
||||
private Long updatedAt;
|
||||
private Integer userId;
|
||||
private String tableId;
|
||||
private TbProductSpec tbProductSpec;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
}
|
||||
@@ -0,0 +1,68 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
|
||||
public class TbDeviceOperateInfo implements Serializable {
|
||||
private Integer id;
|
||||
|
||||
private String deviceno;
|
||||
|
||||
private String type;
|
||||
|
||||
private String shopId;
|
||||
|
||||
private Date createtime;
|
||||
|
||||
private String remark;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getDeviceno() {
|
||||
return deviceno;
|
||||
}
|
||||
|
||||
public void setDeviceno(String deviceno) {
|
||||
this.deviceno = deviceno == null ? null : deviceno.trim();
|
||||
}
|
||||
|
||||
public String getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
public void setType(String type) {
|
||||
this.type = type == null ? null : type.trim();
|
||||
}
|
||||
|
||||
public String getShopId() {
|
||||
return shopId;
|
||||
}
|
||||
|
||||
public void setShopId(String shopId) {
|
||||
this.shopId = shopId == null ? null : shopId.trim();
|
||||
}
|
||||
|
||||
public Date getCreatetime() {
|
||||
return createtime;
|
||||
}
|
||||
|
||||
public void setCreatetime(Date createtime) {
|
||||
this.createtime = createtime;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark == null ? null : remark.trim();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,249 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.math.BigDecimal;
|
||||
import java.util.Date;
|
||||
|
||||
public class TbDeviceStock implements Serializable {
|
||||
private Integer id;
|
||||
|
||||
private String code;
|
||||
|
||||
private String snno;
|
||||
|
||||
private String orderno;
|
||||
|
||||
private BigDecimal price;
|
||||
|
||||
private String type;
|
||||
|
||||
private String groupno;
|
||||
|
||||
private String buymercname;
|
||||
|
||||
private String buymercid;
|
||||
|
||||
private String actmercname;
|
||||
|
||||
private String actmercid;
|
||||
|
||||
private String status;
|
||||
|
||||
private Date createtime;
|
||||
|
||||
private String createby;
|
||||
|
||||
private String delflag;
|
||||
|
||||
private String remarks;
|
||||
|
||||
private Date updatetime;
|
||||
|
||||
private String deviceno;
|
||||
|
||||
private Integer belonguserid;
|
||||
|
||||
private Integer extractuserid;
|
||||
|
||||
private String rolecode;
|
||||
|
||||
private Date instocktime;
|
||||
|
||||
private String transferstatus;
|
||||
|
||||
private Date bindtime;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getCode() {
|
||||
return code;
|
||||
}
|
||||
|
||||
public void setCode(String code) {
|
||||
this.code = code == null ? null : code.trim();
|
||||
}
|
||||
|
||||
public String getSnno() {
|
||||
return snno;
|
||||
}
|
||||
|
||||
public void setSnno(String snno) {
|
||||
this.snno = snno == null ? null : snno.trim();
|
||||
}
|
||||
|
||||
public String getOrderno() {
|
||||
return orderno;
|
||||
}
|
||||
|
||||
public void setOrderno(String orderno) {
|
||||
this.orderno = orderno == null ? null : orderno.trim();
|
||||
}
|
||||
|
||||
public BigDecimal getPrice() {
|
||||
return price;
|
||||
}
|
||||
|
||||
public void setPrice(BigDecimal price) {
|
||||
this.price = price;
|
||||
}
|
||||
|
||||
public String getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
public void setType(String type) {
|
||||
this.type = type == null ? null : type.trim();
|
||||
}
|
||||
|
||||
public String getGroupno() {
|
||||
return groupno;
|
||||
}
|
||||
|
||||
public void setGroupno(String groupno) {
|
||||
this.groupno = groupno == null ? null : groupno.trim();
|
||||
}
|
||||
|
||||
public String getBuymercname() {
|
||||
return buymercname;
|
||||
}
|
||||
|
||||
public void setBuymercname(String buymercname) {
|
||||
this.buymercname = buymercname == null ? null : buymercname.trim();
|
||||
}
|
||||
|
||||
public String getBuymercid() {
|
||||
return buymercid;
|
||||
}
|
||||
|
||||
public void setBuymercid(String buymercid) {
|
||||
this.buymercid = buymercid == null ? null : buymercid.trim();
|
||||
}
|
||||
|
||||
public String getActmercname() {
|
||||
return actmercname;
|
||||
}
|
||||
|
||||
public void setActmercname(String actmercname) {
|
||||
this.actmercname = actmercname == null ? null : actmercname.trim();
|
||||
}
|
||||
|
||||
public String getActmercid() {
|
||||
return actmercid;
|
||||
}
|
||||
|
||||
public void setActmercid(String actmercid) {
|
||||
this.actmercid = actmercid == null ? null : actmercid.trim();
|
||||
}
|
||||
|
||||
public String getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
public void setStatus(String status) {
|
||||
this.status = status == null ? null : status.trim();
|
||||
}
|
||||
|
||||
public Date getCreatetime() {
|
||||
return createtime;
|
||||
}
|
||||
|
||||
public void setCreatetime(Date createtime) {
|
||||
this.createtime = createtime;
|
||||
}
|
||||
|
||||
public String getCreateby() {
|
||||
return createby;
|
||||
}
|
||||
|
||||
public void setCreateby(String createby) {
|
||||
this.createby = createby == null ? null : createby.trim();
|
||||
}
|
||||
|
||||
public String getDelflag() {
|
||||
return delflag;
|
||||
}
|
||||
|
||||
public void setDelflag(String delflag) {
|
||||
this.delflag = delflag == null ? null : delflag.trim();
|
||||
}
|
||||
|
||||
public String getRemarks() {
|
||||
return remarks;
|
||||
}
|
||||
|
||||
public void setRemarks(String remarks) {
|
||||
this.remarks = remarks == null ? null : remarks.trim();
|
||||
}
|
||||
|
||||
public Date getUpdatetime() {
|
||||
return updatetime;
|
||||
}
|
||||
|
||||
public void setUpdatetime(Date updatetime) {
|
||||
this.updatetime = updatetime;
|
||||
}
|
||||
|
||||
public String getDeviceno() {
|
||||
return deviceno;
|
||||
}
|
||||
|
||||
public void setDeviceno(String deviceno) {
|
||||
this.deviceno = deviceno == null ? null : deviceno.trim();
|
||||
}
|
||||
|
||||
public Integer getBelonguserid() {
|
||||
return belonguserid;
|
||||
}
|
||||
|
||||
public void setBelonguserid(Integer belonguserid) {
|
||||
this.belonguserid = belonguserid;
|
||||
}
|
||||
|
||||
public Integer getExtractuserid() {
|
||||
return extractuserid;
|
||||
}
|
||||
|
||||
public void setExtractuserid(Integer extractuserid) {
|
||||
this.extractuserid = extractuserid;
|
||||
}
|
||||
|
||||
public String getRolecode() {
|
||||
return rolecode;
|
||||
}
|
||||
|
||||
public void setRolecode(String rolecode) {
|
||||
this.rolecode = rolecode == null ? null : rolecode.trim();
|
||||
}
|
||||
|
||||
public Date getInstocktime() {
|
||||
return instocktime;
|
||||
}
|
||||
|
||||
public void setInstocktime(Date instocktime) {
|
||||
this.instocktime = instocktime;
|
||||
}
|
||||
|
||||
public String getTransferstatus() {
|
||||
return transferstatus;
|
||||
}
|
||||
|
||||
public void setTransferstatus(String transferstatus) {
|
||||
this.transferstatus = transferstatus == null ? null : transferstatus.trim();
|
||||
}
|
||||
|
||||
public Date getBindtime() {
|
||||
return bindtime;
|
||||
}
|
||||
|
||||
public void setBindtime(Date bindtime) {
|
||||
this.bindtime = bindtime;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,109 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.math.BigDecimal;
|
||||
import java.util.Date;
|
||||
|
||||
public class TbMemberIn implements Serializable {
|
||||
private Integer id;
|
||||
|
||||
private Integer userId;
|
||||
|
||||
private Integer merchantId;
|
||||
|
||||
private String code;
|
||||
|
||||
private BigDecimal amount;
|
||||
|
||||
private String status;
|
||||
|
||||
private String orderNo;
|
||||
|
||||
private String tradeNo;
|
||||
|
||||
private Date createTime;
|
||||
|
||||
private Date updateTime;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Integer getUserId() {
|
||||
return userId;
|
||||
}
|
||||
|
||||
public void setUserId(Integer userId) {
|
||||
this.userId = userId;
|
||||
}
|
||||
|
||||
public Integer getMerchantId() {
|
||||
return merchantId;
|
||||
}
|
||||
|
||||
public void setMerchantId(Integer merchantId) {
|
||||
this.merchantId = merchantId;
|
||||
}
|
||||
|
||||
public String getCode() {
|
||||
return code;
|
||||
}
|
||||
|
||||
public void setCode(String code) {
|
||||
this.code = code == null ? null : code.trim();
|
||||
}
|
||||
|
||||
public BigDecimal getAmount() {
|
||||
return amount;
|
||||
}
|
||||
|
||||
public void setAmount(BigDecimal amount) {
|
||||
this.amount = amount;
|
||||
}
|
||||
|
||||
public String getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
public void setStatus(String status) {
|
||||
this.status = status == null ? null : status.trim();
|
||||
}
|
||||
|
||||
public String getOrderNo() {
|
||||
return orderNo;
|
||||
}
|
||||
|
||||
public void setOrderNo(String orderNo) {
|
||||
this.orderNo = orderNo == null ? null : orderNo.trim();
|
||||
}
|
||||
|
||||
public String getTradeNo() {
|
||||
return tradeNo;
|
||||
}
|
||||
|
||||
public void setTradeNo(String tradeNo) {
|
||||
this.tradeNo = tradeNo == null ? null : tradeNo.trim();
|
||||
}
|
||||
|
||||
public Date getCreateTime() {
|
||||
return createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Date createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public Date getUpdateTime() {
|
||||
return updateTime;
|
||||
}
|
||||
|
||||
public void setUpdateTime(Date updateTime) {
|
||||
this.updateTime = updateTime;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,260 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* 商家登陆帐号(TbMerchantAccount)实体类
|
||||
*
|
||||
* @author lyf
|
||||
* @since 2024-02-05 09:23:23
|
||||
*/
|
||||
public class TbMerchantAccount implements Serializable {
|
||||
private static final long serialVersionUID = -10920550123596123L;
|
||||
/**
|
||||
* 自增id
|
||||
*/
|
||||
private Integer id;
|
||||
/**
|
||||
* 登陆帐号
|
||||
*/
|
||||
private String account;
|
||||
/**
|
||||
* 登陆密码
|
||||
*/
|
||||
private String password;
|
||||
/**
|
||||
* 商家Id
|
||||
*/
|
||||
private String merchantId;
|
||||
/**
|
||||
* 门店Id
|
||||
*/
|
||||
private String shopId;
|
||||
|
||||
private String shopSnap;
|
||||
/**
|
||||
* 是否管理员
|
||||
*/
|
||||
private Integer isAdmin;
|
||||
/**
|
||||
* 是否商户:1商户帐号0-店铺帐号
|
||||
*/
|
||||
private Integer isMercantile;
|
||||
/**
|
||||
* 姓名
|
||||
*/
|
||||
private String name;
|
||||
/**
|
||||
* 性别:0女 1 男
|
||||
*/
|
||||
private Integer sex;
|
||||
/**
|
||||
* 邮箱
|
||||
*/
|
||||
private String email;
|
||||
/**
|
||||
* 头像
|
||||
*/
|
||||
private String headImg;
|
||||
/**
|
||||
* 联系电话
|
||||
*/
|
||||
private String telephone;
|
||||
/**
|
||||
* 状态
|
||||
*/
|
||||
private Integer status;
|
||||
/**
|
||||
* 排序
|
||||
*/
|
||||
private Integer sort;
|
||||
|
||||
private Integer roleId;
|
||||
/**
|
||||
* 最后登陆时间
|
||||
*/
|
||||
private Integer lastLoginAt;
|
||||
/**
|
||||
* 公众号openId
|
||||
*/
|
||||
private String mpOpenId;
|
||||
/**
|
||||
* 是否接收消息通知
|
||||
*/
|
||||
private Integer msgAble;
|
||||
|
||||
private Long createdAt;
|
||||
|
||||
private Long updatedAt;
|
||||
|
||||
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getAccount() {
|
||||
return account;
|
||||
}
|
||||
|
||||
public void setAccount(String account) {
|
||||
this.account = account;
|
||||
}
|
||||
|
||||
public String getPassword() {
|
||||
return password;
|
||||
}
|
||||
|
||||
public void setPassword(String password) {
|
||||
this.password = password;
|
||||
}
|
||||
|
||||
public String getMerchantId() {
|
||||
return merchantId;
|
||||
}
|
||||
|
||||
public void setMerchantId(String merchantId) {
|
||||
this.merchantId = merchantId;
|
||||
}
|
||||
|
||||
public String getShopId() {
|
||||
return shopId;
|
||||
}
|
||||
|
||||
public void setShopId(String shopId) {
|
||||
this.shopId = shopId;
|
||||
}
|
||||
|
||||
public String getShopSnap() {
|
||||
return shopSnap;
|
||||
}
|
||||
|
||||
public void setShopSnap(String shopSnap) {
|
||||
this.shopSnap = shopSnap;
|
||||
}
|
||||
|
||||
public Integer getIsAdmin() {
|
||||
return isAdmin;
|
||||
}
|
||||
|
||||
public void setIsAdmin(Integer isAdmin) {
|
||||
this.isAdmin = isAdmin;
|
||||
}
|
||||
|
||||
public Integer getIsMercantile() {
|
||||
return isMercantile;
|
||||
}
|
||||
|
||||
public void setIsMercantile(Integer isMercantile) {
|
||||
this.isMercantile = isMercantile;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public Integer getSex() {
|
||||
return sex;
|
||||
}
|
||||
|
||||
public void setSex(Integer sex) {
|
||||
this.sex = sex;
|
||||
}
|
||||
|
||||
public String getEmail() {
|
||||
return email;
|
||||
}
|
||||
|
||||
public void setEmail(String email) {
|
||||
this.email = email;
|
||||
}
|
||||
|
||||
public String getHeadImg() {
|
||||
return headImg;
|
||||
}
|
||||
|
||||
public void setHeadImg(String headImg) {
|
||||
this.headImg = headImg;
|
||||
}
|
||||
|
||||
public String getTelephone() {
|
||||
return telephone;
|
||||
}
|
||||
|
||||
public void setTelephone(String telephone) {
|
||||
this.telephone = telephone;
|
||||
}
|
||||
|
||||
public Integer getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
public void setStatus(Integer status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public Integer getSort() {
|
||||
return sort;
|
||||
}
|
||||
|
||||
public void setSort(Integer sort) {
|
||||
this.sort = sort;
|
||||
}
|
||||
|
||||
public Integer getRoleId() {
|
||||
return roleId;
|
||||
}
|
||||
|
||||
public void setRoleId(Integer roleId) {
|
||||
this.roleId = roleId;
|
||||
}
|
||||
|
||||
public Integer getLastLoginAt() {
|
||||
return lastLoginAt;
|
||||
}
|
||||
|
||||
public void setLastLoginAt(Integer lastLoginAt) {
|
||||
this.lastLoginAt = lastLoginAt;
|
||||
}
|
||||
|
||||
public String getMpOpenId() {
|
||||
return mpOpenId;
|
||||
}
|
||||
|
||||
public void setMpOpenId(String mpOpenId) {
|
||||
this.mpOpenId = mpOpenId;
|
||||
}
|
||||
|
||||
public Integer getMsgAble() {
|
||||
return msgAble;
|
||||
}
|
||||
|
||||
public void setMsgAble(Integer msgAble) {
|
||||
this.msgAble = msgAble;
|
||||
}
|
||||
|
||||
public Long getCreatedAt() {
|
||||
return createdAt;
|
||||
}
|
||||
|
||||
public void setCreatedAt(Long createdAt) {
|
||||
this.createdAt = createdAt;
|
||||
}
|
||||
|
||||
public Long getUpdatedAt() {
|
||||
return updatedAt;
|
||||
}
|
||||
|
||||
public void setUpdatedAt(Long updatedAt) {
|
||||
this.updatedAt = updatedAt;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,198 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.math.BigDecimal;
|
||||
|
||||
public class TbMerchantRegister implements Serializable {
|
||||
private Integer id;
|
||||
|
||||
private String registerCode;
|
||||
|
||||
private String appCode;
|
||||
|
||||
private String telephone;
|
||||
|
||||
private String merchantId;
|
||||
|
||||
private String shopId;
|
||||
|
||||
private String type;
|
||||
|
||||
private BigDecimal amount;
|
||||
|
||||
private Integer periodYear;
|
||||
|
||||
private String name;
|
||||
|
||||
private String address;
|
||||
|
||||
private String logo;
|
||||
|
||||
private String industry;
|
||||
|
||||
private String industryName;
|
||||
|
||||
private Integer status;
|
||||
|
||||
private Integer limitShopNumber;
|
||||
|
||||
private String sourcePath;
|
||||
|
||||
private Long createdAt;
|
||||
|
||||
private Long updatedAt;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getRegisterCode() {
|
||||
return registerCode;
|
||||
}
|
||||
|
||||
public void setRegisterCode(String registerCode) {
|
||||
this.registerCode = registerCode == null ? null : registerCode.trim();
|
||||
}
|
||||
|
||||
public String getAppCode() {
|
||||
return appCode;
|
||||
}
|
||||
|
||||
public void setAppCode(String appCode) {
|
||||
this.appCode = appCode == null ? null : appCode.trim();
|
||||
}
|
||||
|
||||
public String getTelephone() {
|
||||
return telephone;
|
||||
}
|
||||
|
||||
public void setTelephone(String telephone) {
|
||||
this.telephone = telephone == null ? null : telephone.trim();
|
||||
}
|
||||
|
||||
public String getMerchantId() {
|
||||
return merchantId;
|
||||
}
|
||||
|
||||
public void setMerchantId(String merchantId) {
|
||||
this.merchantId = merchantId == null ? null : merchantId.trim();
|
||||
}
|
||||
|
||||
public String getShopId() {
|
||||
return shopId;
|
||||
}
|
||||
|
||||
public void setShopId(String shopId) {
|
||||
this.shopId = shopId == null ? null : shopId.trim();
|
||||
}
|
||||
|
||||
public String getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
public void setType(String type) {
|
||||
this.type = type == null ? null : type.trim();
|
||||
}
|
||||
|
||||
public BigDecimal getAmount() {
|
||||
return amount;
|
||||
}
|
||||
|
||||
public void setAmount(BigDecimal amount) {
|
||||
this.amount = amount;
|
||||
}
|
||||
|
||||
public Integer getPeriodYear() {
|
||||
return periodYear;
|
||||
}
|
||||
|
||||
public void setPeriodYear(Integer periodYear) {
|
||||
this.periodYear = periodYear;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name == null ? null : name.trim();
|
||||
}
|
||||
|
||||
public String getAddress() {
|
||||
return address;
|
||||
}
|
||||
|
||||
public void setAddress(String address) {
|
||||
this.address = address == null ? null : address.trim();
|
||||
}
|
||||
|
||||
public String getLogo() {
|
||||
return logo;
|
||||
}
|
||||
|
||||
public void setLogo(String logo) {
|
||||
this.logo = logo == null ? null : logo.trim();
|
||||
}
|
||||
|
||||
public String getIndustry() {
|
||||
return industry;
|
||||
}
|
||||
|
||||
public void setIndustry(String industry) {
|
||||
this.industry = industry == null ? null : industry.trim();
|
||||
}
|
||||
|
||||
public String getIndustryName() {
|
||||
return industryName;
|
||||
}
|
||||
|
||||
public void setIndustryName(String industryName) {
|
||||
this.industryName = industryName == null ? null : industryName.trim();
|
||||
}
|
||||
|
||||
public Integer getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
public void setStatus(Integer status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public Integer getLimitShopNumber() {
|
||||
return limitShopNumber;
|
||||
}
|
||||
|
||||
public void setLimitShopNumber(Integer limitShopNumber) {
|
||||
this.limitShopNumber = limitShopNumber;
|
||||
}
|
||||
|
||||
public String getSourcePath() {
|
||||
return sourcePath;
|
||||
}
|
||||
|
||||
public void setSourcePath(String sourcePath) {
|
||||
this.sourcePath = sourcePath == null ? null : sourcePath.trim();
|
||||
}
|
||||
|
||||
public Long getCreatedAt() {
|
||||
return createdAt;
|
||||
}
|
||||
|
||||
public void setCreatedAt(Long createdAt) {
|
||||
this.createdAt = createdAt;
|
||||
}
|
||||
|
||||
public Long getUpdatedAt() {
|
||||
return updatedAt;
|
||||
}
|
||||
|
||||
public void setUpdatedAt(Long updatedAt) {
|
||||
this.updatedAt = updatedAt;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,97 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class TbMerchantThirdApply implements Serializable {
|
||||
private Integer id;
|
||||
|
||||
private String type;
|
||||
|
||||
private String appId;
|
||||
|
||||
private Byte status;
|
||||
|
||||
private String payPassword;
|
||||
|
||||
private String applymentState;
|
||||
|
||||
private Long createdAt;
|
||||
|
||||
private Long updatedAt;
|
||||
|
||||
private String appToken;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
public void setType(String type) {
|
||||
this.type = type == null ? null : type.trim();
|
||||
}
|
||||
|
||||
public String getAppId() {
|
||||
return appId;
|
||||
}
|
||||
|
||||
public void setAppId(String appId) {
|
||||
this.appId = appId == null ? null : appId.trim();
|
||||
}
|
||||
|
||||
public Byte getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
public void setStatus(Byte status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String getPayPassword() {
|
||||
return payPassword;
|
||||
}
|
||||
|
||||
public void setPayPassword(String payPassword) {
|
||||
this.payPassword = payPassword == null ? null : payPassword.trim();
|
||||
}
|
||||
|
||||
public String getApplymentState() {
|
||||
return applymentState;
|
||||
}
|
||||
|
||||
public void setApplymentState(String applymentState) {
|
||||
this.applymentState = applymentState == null ? null : applymentState.trim();
|
||||
}
|
||||
|
||||
public Long getCreatedAt() {
|
||||
return createdAt;
|
||||
}
|
||||
|
||||
public void setCreatedAt(Long createdAt) {
|
||||
this.createdAt = createdAt;
|
||||
}
|
||||
|
||||
public Long getUpdatedAt() {
|
||||
return updatedAt;
|
||||
}
|
||||
|
||||
public void setUpdatedAt(Long updatedAt) {
|
||||
this.updatedAt = updatedAt;
|
||||
}
|
||||
|
||||
public String getAppToken() {
|
||||
return appToken;
|
||||
}
|
||||
|
||||
public void setAppToken(String appToken) {
|
||||
this.appToken = appToken == null ? null : appToken.trim();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,40 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.math.BigDecimal;
|
||||
import java.util.Date;
|
||||
|
||||
@Data
|
||||
public class TbOrderDetail implements Serializable {
|
||||
private Integer id;
|
||||
|
||||
private Integer orderId;
|
||||
|
||||
private Integer shopId;
|
||||
|
||||
private Integer productId;
|
||||
|
||||
private Integer productSkuId;
|
||||
|
||||
private Integer num;
|
||||
|
||||
private String productName;
|
||||
private String status;
|
||||
|
||||
private String productSkuName;
|
||||
|
||||
private String productImg;
|
||||
|
||||
private Date createTime;
|
||||
|
||||
private Date updateTime;
|
||||
|
||||
private BigDecimal price;
|
||||
|
||||
private BigDecimal priceAmount;
|
||||
private BigDecimal packAmount;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
}
|
||||
@@ -0,0 +1,98 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class TbOrderExtend implements Serializable {
|
||||
private Integer id;
|
||||
|
||||
private String creatorSnap;
|
||||
|
||||
private String cashierSnap;
|
||||
|
||||
private String terminalSnap;
|
||||
|
||||
private String tableParty;
|
||||
|
||||
private String shopId;
|
||||
|
||||
private Long createdAt;
|
||||
|
||||
private Long updatedAt;
|
||||
|
||||
private String shopSnap;
|
||||
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getCreatorSnap() {
|
||||
return creatorSnap;
|
||||
}
|
||||
|
||||
public void setCreatorSnap(String creatorSnap) {
|
||||
this.creatorSnap = creatorSnap == null ? null : creatorSnap.trim();
|
||||
}
|
||||
|
||||
public String getCashierSnap() {
|
||||
return cashierSnap;
|
||||
}
|
||||
|
||||
public void setCashierSnap(String cashierSnap) {
|
||||
this.cashierSnap = cashierSnap == null ? null : cashierSnap.trim();
|
||||
}
|
||||
|
||||
public String getTerminalSnap() {
|
||||
return terminalSnap;
|
||||
}
|
||||
|
||||
public void setTerminalSnap(String terminalSnap) {
|
||||
this.terminalSnap = terminalSnap == null ? null : terminalSnap.trim();
|
||||
}
|
||||
|
||||
public String getTableParty() {
|
||||
return tableParty;
|
||||
}
|
||||
|
||||
public void setTableParty(String tableParty) {
|
||||
this.tableParty = tableParty == null ? null : tableParty.trim();
|
||||
}
|
||||
|
||||
public String getShopId() {
|
||||
return shopId;
|
||||
}
|
||||
|
||||
public void setShopId(String shopId) {
|
||||
this.shopId = shopId == null ? null : shopId.trim();
|
||||
}
|
||||
|
||||
public Long getCreatedAt() {
|
||||
return createdAt;
|
||||
}
|
||||
|
||||
public void setCreatedAt(Long createdAt) {
|
||||
this.createdAt = createdAt;
|
||||
}
|
||||
|
||||
public Long getUpdatedAt() {
|
||||
return updatedAt;
|
||||
}
|
||||
|
||||
public void setUpdatedAt(Long updatedAt) {
|
||||
this.updatedAt = updatedAt;
|
||||
}
|
||||
|
||||
public String getShopSnap() {
|
||||
return shopSnap;
|
||||
}
|
||||
|
||||
public void setShopSnap(String shopSnap) {
|
||||
this.shopSnap = shopSnap == null ? null : shopSnap.trim();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,27 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class TbOrderExtendWithBLOBs extends TbOrderExtend implements Serializable {
|
||||
private String cartList;
|
||||
|
||||
private String paymentList;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public String getCartList() {
|
||||
return cartList;
|
||||
}
|
||||
|
||||
public void setCartList(String cartList) {
|
||||
this.cartList = cartList == null ? null : cartList.trim();
|
||||
}
|
||||
|
||||
public String getPaymentList() {
|
||||
return paymentList;
|
||||
}
|
||||
|
||||
public void setPaymentList(String paymentList) {
|
||||
this.paymentList = paymentList == null ? null : paymentList.trim();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,162 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.math.BigDecimal;
|
||||
import java.util.List;
|
||||
|
||||
@Data
|
||||
public class TbOrderInfo implements Serializable {
|
||||
private Integer id;
|
||||
|
||||
//订单号
|
||||
private String orderNo;
|
||||
|
||||
private BigDecimal settlementAmount;
|
||||
|
||||
private BigDecimal packFee;
|
||||
|
||||
private BigDecimal originAmount;
|
||||
|
||||
private BigDecimal productAmount;
|
||||
|
||||
private BigDecimal amount;
|
||||
|
||||
private BigDecimal refundAmount;
|
||||
|
||||
private String payType;
|
||||
|
||||
private BigDecimal payAmount;
|
||||
|
||||
private BigDecimal orderAmount;
|
||||
|
||||
private BigDecimal freightAmount;
|
||||
|
||||
private BigDecimal discountRatio;
|
||||
|
||||
private BigDecimal discountAmount;
|
||||
|
||||
private String tableId;
|
||||
|
||||
private BigDecimal smallChange;
|
||||
|
||||
private String sendType;
|
||||
|
||||
private String orderType;
|
||||
|
||||
private String productType;
|
||||
|
||||
private String status;
|
||||
|
||||
private String billingId;
|
||||
|
||||
private String merchantId;
|
||||
|
||||
private String shopId;
|
||||
|
||||
private Byte isVip;
|
||||
|
||||
private String memberId;
|
||||
private String userName;
|
||||
private String memberName;
|
||||
private String zdNo;
|
||||
|
||||
private String userId;
|
||||
private String imgUrl;
|
||||
|
||||
private Integer productScore;
|
||||
|
||||
private Integer deductScore;
|
||||
|
||||
private String userCouponId;
|
||||
|
||||
private BigDecimal userCouponAmount;
|
||||
|
||||
private Byte refundAble;
|
||||
|
||||
private Long paidTime;
|
||||
|
||||
private Byte isEffect;
|
||||
|
||||
private Byte isGroup;
|
||||
|
||||
private Long updatedAt;
|
||||
|
||||
private Long systemTime;
|
||||
|
||||
private Long createdAt;
|
||||
|
||||
private Byte isAccepted;
|
||||
|
||||
private String payOrderNo;
|
||||
private String tradeDay;
|
||||
private Integer source;
|
||||
private String remark;
|
||||
private String tableName;
|
||||
private String masterId;
|
||||
private Integer totalNumber;
|
||||
private List<TbOrderDetail> detailList;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public TbOrderInfo(){
|
||||
super();
|
||||
}
|
||||
public TbOrderInfo( String orderNo, BigDecimal settlementAmount, BigDecimal packFee,BigDecimal originAmount,
|
||||
BigDecimal productAmount,BigDecimal orderAmount, BigDecimal freightAmount,String tableId, String sendType,
|
||||
String orderType,String merchantId,String shopId,String userId,Byte refundAble,String tradeDay,String masterId ) {
|
||||
this.orderNo = orderNo;
|
||||
this.masterId = masterId;
|
||||
this.tradeDay = tradeDay;
|
||||
this.settlementAmount = settlementAmount;
|
||||
this.packFee = packFee;
|
||||
this.originAmount = originAmount;
|
||||
this.productAmount = productAmount;
|
||||
this.orderAmount = orderAmount;
|
||||
this.freightAmount = freightAmount;
|
||||
this.tableId = tableId;
|
||||
this.sendType = sendType;
|
||||
this.orderType = orderType;
|
||||
this.status = "unpaid";
|
||||
this.merchantId = merchantId;
|
||||
this.shopId = shopId;
|
||||
this.isVip = 0;
|
||||
this.userId = userId;
|
||||
this.refundAble = refundAble;
|
||||
this.isEffect = 1;
|
||||
this.systemTime = System.currentTimeMillis();
|
||||
this.createdAt = System.currentTimeMillis();
|
||||
this.isAccepted = 1;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
public TbOrderInfo( String orderNo, BigDecimal settlementAmount, BigDecimal packFee,BigDecimal originAmount,
|
||||
BigDecimal productAmount,BigDecimal orderAmount, BigDecimal freightAmount,String tableId, String sendType,
|
||||
String orderType,String merchantId,String shopId,String userId,Byte refundAble,String tradeDay,String masterId,String status,BigDecimal payAmount) {
|
||||
this.orderNo = orderNo;
|
||||
this.masterId = masterId;
|
||||
this.tradeDay = tradeDay;
|
||||
this.settlementAmount = settlementAmount;
|
||||
this.packFee = packFee;
|
||||
this.originAmount = originAmount;
|
||||
this.productAmount = productAmount;
|
||||
this.orderAmount = orderAmount;
|
||||
this.freightAmount = freightAmount;
|
||||
this.payAmount=payAmount;
|
||||
this.tableId = tableId;
|
||||
this.sendType = sendType;
|
||||
this.orderType = orderType;
|
||||
this.status = status;
|
||||
this.merchantId = merchantId;
|
||||
this.shopId = shopId;
|
||||
this.isVip = 0;
|
||||
this.userId = userId;
|
||||
this.refundAble = refundAble;
|
||||
this.isEffect = 1;
|
||||
this.systemTime = System.currentTimeMillis();
|
||||
this.createdAt = System.currentTimeMillis();
|
||||
this.isAccepted = 1;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,198 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.math.BigDecimal;
|
||||
|
||||
public class TbOrderPayment implements Serializable {
|
||||
private Integer id;
|
||||
|
||||
private String payTypeId;
|
||||
|
||||
private BigDecimal amount;
|
||||
|
||||
private BigDecimal paidAmount;
|
||||
|
||||
private BigDecimal hasRefundAmount;
|
||||
|
||||
private String payName;
|
||||
|
||||
private String payType;
|
||||
|
||||
private BigDecimal received;
|
||||
|
||||
private BigDecimal changeFee;
|
||||
|
||||
private String merchantId;
|
||||
|
||||
private String shopId;
|
||||
|
||||
private String billingId;
|
||||
|
||||
private String orderId;
|
||||
|
||||
private String authCode;
|
||||
|
||||
private String refundable;
|
||||
|
||||
private Long createdAt;
|
||||
|
||||
private Long updatedAt;
|
||||
|
||||
private String tradeNumber;
|
||||
|
||||
private String memberId;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getPayTypeId() {
|
||||
return payTypeId;
|
||||
}
|
||||
|
||||
public void setPayTypeId(String payTypeId) {
|
||||
this.payTypeId = payTypeId == null ? null : payTypeId.trim();
|
||||
}
|
||||
|
||||
public BigDecimal getAmount() {
|
||||
return amount;
|
||||
}
|
||||
|
||||
public void setAmount(BigDecimal amount) {
|
||||
this.amount = amount;
|
||||
}
|
||||
|
||||
public BigDecimal getPaidAmount() {
|
||||
return paidAmount;
|
||||
}
|
||||
|
||||
public void setPaidAmount(BigDecimal paidAmount) {
|
||||
this.paidAmount = paidAmount;
|
||||
}
|
||||
|
||||
public BigDecimal getHasRefundAmount() {
|
||||
return hasRefundAmount;
|
||||
}
|
||||
|
||||
public void setHasRefundAmount(BigDecimal hasRefundAmount) {
|
||||
this.hasRefundAmount = hasRefundAmount;
|
||||
}
|
||||
|
||||
public String getPayName() {
|
||||
return payName;
|
||||
}
|
||||
|
||||
public void setPayName(String payName) {
|
||||
this.payName = payName == null ? null : payName.trim();
|
||||
}
|
||||
|
||||
public String getPayType() {
|
||||
return payType;
|
||||
}
|
||||
|
||||
public void setPayType(String payType) {
|
||||
this.payType = payType == null ? null : payType.trim();
|
||||
}
|
||||
|
||||
public BigDecimal getReceived() {
|
||||
return received;
|
||||
}
|
||||
|
||||
public void setReceived(BigDecimal received) {
|
||||
this.received = received;
|
||||
}
|
||||
|
||||
public BigDecimal getChangeFee() {
|
||||
return changeFee;
|
||||
}
|
||||
|
||||
public void setChangeFee(BigDecimal changeFee) {
|
||||
this.changeFee = changeFee;
|
||||
}
|
||||
|
||||
public String getMerchantId() {
|
||||
return merchantId;
|
||||
}
|
||||
|
||||
public void setMerchantId(String merchantId) {
|
||||
this.merchantId = merchantId == null ? null : merchantId.trim();
|
||||
}
|
||||
|
||||
public String getShopId() {
|
||||
return shopId;
|
||||
}
|
||||
|
||||
public void setShopId(String shopId) {
|
||||
this.shopId = shopId == null ? null : shopId.trim();
|
||||
}
|
||||
|
||||
public String getBillingId() {
|
||||
return billingId;
|
||||
}
|
||||
|
||||
public void setBillingId(String billingId) {
|
||||
this.billingId = billingId == null ? null : billingId.trim();
|
||||
}
|
||||
|
||||
public String getOrderId() {
|
||||
return orderId;
|
||||
}
|
||||
|
||||
public void setOrderId(String orderId) {
|
||||
this.orderId = orderId == null ? null : orderId.trim();
|
||||
}
|
||||
|
||||
public String getAuthCode() {
|
||||
return authCode;
|
||||
}
|
||||
|
||||
public void setAuthCode(String authCode) {
|
||||
this.authCode = authCode == null ? null : authCode.trim();
|
||||
}
|
||||
|
||||
public String getRefundable() {
|
||||
return refundable;
|
||||
}
|
||||
|
||||
public void setRefundable(String refundable) {
|
||||
this.refundable = refundable == null ? null : refundable.trim();
|
||||
}
|
||||
|
||||
public Long getCreatedAt() {
|
||||
return createdAt;
|
||||
}
|
||||
|
||||
public void setCreatedAt(Long createdAt) {
|
||||
this.createdAt = createdAt;
|
||||
}
|
||||
|
||||
public Long getUpdatedAt() {
|
||||
return updatedAt;
|
||||
}
|
||||
|
||||
public void setUpdatedAt(Long updatedAt) {
|
||||
this.updatedAt = updatedAt;
|
||||
}
|
||||
|
||||
public String getTradeNumber() {
|
||||
return tradeNumber;
|
||||
}
|
||||
|
||||
public void setTradeNumber(String tradeNumber) {
|
||||
this.tradeNumber = tradeNumber == null ? null : tradeNumber.trim();
|
||||
}
|
||||
|
||||
public String getMemberId() {
|
||||
return memberId;
|
||||
}
|
||||
|
||||
public void setMemberId(String memberId) {
|
||||
this.memberId = memberId == null ? null : memberId.trim();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,128 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
|
||||
public class TbPlussDeviceGoods implements Serializable {
|
||||
private Integer id;
|
||||
|
||||
private String code;
|
||||
|
||||
private String name;
|
||||
|
||||
private String devicelogo;
|
||||
|
||||
private String introdesc;
|
||||
|
||||
private Integer sort;
|
||||
|
||||
private Integer status;
|
||||
|
||||
private Integer tagid;
|
||||
|
||||
private String depositflag;
|
||||
|
||||
private Date createtime;
|
||||
|
||||
private Date updatetime;
|
||||
|
||||
private String detail;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getCode() {
|
||||
return code;
|
||||
}
|
||||
|
||||
public void setCode(String code) {
|
||||
this.code = code == null ? null : code.trim();
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name == null ? null : name.trim();
|
||||
}
|
||||
|
||||
public String getDevicelogo() {
|
||||
return devicelogo;
|
||||
}
|
||||
|
||||
public void setDevicelogo(String devicelogo) {
|
||||
this.devicelogo = devicelogo == null ? null : devicelogo.trim();
|
||||
}
|
||||
|
||||
public String getIntrodesc() {
|
||||
return introdesc;
|
||||
}
|
||||
|
||||
public void setIntrodesc(String introdesc) {
|
||||
this.introdesc = introdesc == null ? null : introdesc.trim();
|
||||
}
|
||||
|
||||
public Integer getSort() {
|
||||
return sort;
|
||||
}
|
||||
|
||||
public void setSort(Integer sort) {
|
||||
this.sort = sort;
|
||||
}
|
||||
|
||||
public Integer getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
public void setStatus(Integer status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public Integer getTagid() {
|
||||
return tagid;
|
||||
}
|
||||
|
||||
public void setTagid(Integer tagid) {
|
||||
this.tagid = tagid;
|
||||
}
|
||||
|
||||
public String getDepositflag() {
|
||||
return depositflag;
|
||||
}
|
||||
|
||||
public void setDepositflag(String depositflag) {
|
||||
this.depositflag = depositflag == null ? null : depositflag.trim();
|
||||
}
|
||||
|
||||
public Date getCreatetime() {
|
||||
return createtime;
|
||||
}
|
||||
|
||||
public void setCreatetime(Date createtime) {
|
||||
this.createtime = createtime;
|
||||
}
|
||||
|
||||
public Date getUpdatetime() {
|
||||
return updatetime;
|
||||
}
|
||||
|
||||
public void setUpdatetime(Date updatetime) {
|
||||
this.updatetime = updatetime;
|
||||
}
|
||||
|
||||
public String getDetail() {
|
||||
return detail;
|
||||
}
|
||||
|
||||
public void setDetail(String detail) {
|
||||
this.detail = detail == null ? null : detail.trim();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,167 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class TbPrintMachine implements Serializable {
|
||||
private Integer id;
|
||||
|
||||
private String name;
|
||||
|
||||
private String type;
|
||||
|
||||
private String connectionType;
|
||||
|
||||
private String address;
|
||||
|
||||
private String port;
|
||||
|
||||
private String subType;
|
||||
|
||||
private Byte status;
|
||||
|
||||
private String shopId;
|
||||
|
||||
private String categoryIds;
|
||||
|
||||
private String contentType;
|
||||
|
||||
private Long createdAt;
|
||||
|
||||
private Long updatedAt;
|
||||
|
||||
private Integer sort;
|
||||
|
||||
private String vendorId;
|
||||
|
||||
private String productId;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name == null ? null : name.trim();
|
||||
}
|
||||
|
||||
public String getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
public void setType(String type) {
|
||||
this.type = type == null ? null : type.trim();
|
||||
}
|
||||
|
||||
public String getConnectionType() {
|
||||
return connectionType;
|
||||
}
|
||||
|
||||
public void setConnectionType(String connectionType) {
|
||||
this.connectionType = connectionType == null ? null : connectionType.trim();
|
||||
}
|
||||
|
||||
public String getAddress() {
|
||||
return address;
|
||||
}
|
||||
|
||||
public void setAddress(String address) {
|
||||
this.address = address == null ? null : address.trim();
|
||||
}
|
||||
|
||||
public String getPort() {
|
||||
return port;
|
||||
}
|
||||
|
||||
public void setPort(String port) {
|
||||
this.port = port == null ? null : port.trim();
|
||||
}
|
||||
|
||||
public String getSubType() {
|
||||
return subType;
|
||||
}
|
||||
|
||||
public void setSubType(String subType) {
|
||||
this.subType = subType == null ? null : subType.trim();
|
||||
}
|
||||
|
||||
public Byte getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
public void setStatus(Byte status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String getShopId() {
|
||||
return shopId;
|
||||
}
|
||||
|
||||
public void setShopId(String shopId) {
|
||||
this.shopId = shopId == null ? null : shopId.trim();
|
||||
}
|
||||
|
||||
public String getCategoryIds() {
|
||||
return categoryIds;
|
||||
}
|
||||
|
||||
public void setCategoryIds(String categoryIds) {
|
||||
this.categoryIds = categoryIds == null ? null : categoryIds.trim();
|
||||
}
|
||||
|
||||
public String getContentType() {
|
||||
return contentType;
|
||||
}
|
||||
|
||||
public void setContentType(String contentType) {
|
||||
this.contentType = contentType == null ? null : contentType.trim();
|
||||
}
|
||||
|
||||
public Long getCreatedAt() {
|
||||
return createdAt;
|
||||
}
|
||||
|
||||
public void setCreatedAt(Long createdAt) {
|
||||
this.createdAt = createdAt;
|
||||
}
|
||||
|
||||
public Long getUpdatedAt() {
|
||||
return updatedAt;
|
||||
}
|
||||
|
||||
public void setUpdatedAt(Long updatedAt) {
|
||||
this.updatedAt = updatedAt;
|
||||
}
|
||||
|
||||
public Integer getSort() {
|
||||
return sort;
|
||||
}
|
||||
|
||||
public void setSort(Integer sort) {
|
||||
this.sort = sort;
|
||||
}
|
||||
|
||||
public String getVendorId() {
|
||||
return vendorId;
|
||||
}
|
||||
|
||||
public void setVendorId(String vendorId) {
|
||||
this.vendorId = vendorId == null ? null : vendorId.trim();
|
||||
}
|
||||
|
||||
public String getProductId() {
|
||||
return productId;
|
||||
}
|
||||
|
||||
public void setProductId(String productId) {
|
||||
this.productId = productId == null ? null : productId.trim();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,33 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity;
|
||||
|
||||
import org.springframework.data.annotation.Transient;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class TbPrintMachineWithBLOBs extends TbPrintMachine implements Serializable {
|
||||
private String config;
|
||||
|
||||
private String categoryList;
|
||||
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public String getConfig() {
|
||||
return config;
|
||||
}
|
||||
|
||||
public void setConfig(String config) {
|
||||
this.config = config == null ? null : config.trim();
|
||||
}
|
||||
|
||||
public String getCategoryList() {
|
||||
return categoryList;
|
||||
}
|
||||
|
||||
public void setCategoryList(String categoryList) {
|
||||
this.categoryList = categoryList == null ? null : categoryList.trim();
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
@@ -0,0 +1,632 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity;
|
||||
|
||||
import org.springframework.data.annotation.Transient;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.math.BigDecimal;
|
||||
|
||||
public class TbProduct implements Serializable {
|
||||
private Integer id;
|
||||
|
||||
private String categoryId;
|
||||
|
||||
private Integer specId;
|
||||
|
||||
private String sourcePath;
|
||||
|
||||
private Integer brandId;
|
||||
|
||||
private String merchantId;
|
||||
|
||||
private String shopId;
|
||||
|
||||
private String name;
|
||||
|
||||
private String shortTitle;
|
||||
|
||||
private String type;
|
||||
|
||||
private BigDecimal packFee;
|
||||
|
||||
private BigDecimal lowPrice;
|
||||
|
||||
private BigDecimal lowMemberPrice;
|
||||
|
||||
private String unitId;
|
||||
|
||||
private String unitSnap;
|
||||
|
||||
private String coverImg;
|
||||
|
||||
private String shareImg;
|
||||
|
||||
private String videoCoverImg;
|
||||
|
||||
private Integer sort;
|
||||
|
||||
private Integer limitNumber;
|
||||
|
||||
private Integer productScore;
|
||||
|
||||
private Byte status;
|
||||
|
||||
private String failMsg;
|
||||
|
||||
private Byte isRecommend;
|
||||
|
||||
private Byte isHot;
|
||||
|
||||
private Byte isNew;
|
||||
|
||||
private Byte isOnSale;
|
||||
|
||||
private Byte isShow;
|
||||
|
||||
private String typeEnum;
|
||||
|
||||
private Byte isDistribute;
|
||||
|
||||
private Byte isDel;
|
||||
|
||||
private Byte isStock;
|
||||
|
||||
private Byte isPauseSale;
|
||||
|
||||
private Byte isFreeFreight;
|
||||
|
||||
private Long freightId;
|
||||
|
||||
private String strategyType;
|
||||
|
||||
private Integer strategyId;
|
||||
|
||||
private Byte isVip;
|
||||
|
||||
private Byte isDelete;
|
||||
|
||||
private Long createdAt;
|
||||
|
||||
private Long updatedAt;
|
||||
|
||||
private Double baseSalesNumber;
|
||||
|
||||
private Integer realSalesNumber;
|
||||
|
||||
private Integer salesNumber;
|
||||
|
||||
private Integer thumbCount;
|
||||
|
||||
private Integer storeCount;
|
||||
|
||||
private Integer furnishMeal;
|
||||
|
||||
private Integer furnishExpress;
|
||||
|
||||
private Integer furnishDraw;
|
||||
|
||||
private Integer furnishVir;
|
||||
|
||||
private Byte isCombo;
|
||||
|
||||
private Byte isShowCash;
|
||||
|
||||
private Byte isShowMall;
|
||||
|
||||
private Byte isNeedExamine;
|
||||
|
||||
private Byte showOnMallStatus;
|
||||
|
||||
private Long showOnMallTime;
|
||||
|
||||
private String showOnMallErrorMsg;
|
||||
|
||||
private Byte enableLabel;
|
||||
|
||||
private String taxConfigId;
|
||||
|
||||
private String specTableHeaders;
|
||||
|
||||
private String cartNumber="0";
|
||||
|
||||
public String getCartNumber() {
|
||||
return cartNumber;
|
||||
}
|
||||
|
||||
public void setCartNumber(String cartNumber) {
|
||||
this.cartNumber = cartNumber;
|
||||
}
|
||||
|
||||
@Transient
|
||||
private TbProductSkuResult productSkuResult;
|
||||
|
||||
|
||||
public TbProductSkuResult getProductSkuResult() {
|
||||
return productSkuResult;
|
||||
}
|
||||
|
||||
public void setProductSkuResult(TbProductSkuResult productSkuResult) {
|
||||
this.productSkuResult = productSkuResult;
|
||||
}
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getCategoryId() {
|
||||
return categoryId;
|
||||
}
|
||||
|
||||
public void setCategoryId(String categoryId) {
|
||||
this.categoryId = categoryId == null ? null : categoryId.trim();
|
||||
}
|
||||
|
||||
public Integer getSpecId() {
|
||||
return specId;
|
||||
}
|
||||
|
||||
public void setSpecId(Integer specId) {
|
||||
this.specId = specId;
|
||||
}
|
||||
|
||||
public String getSourcePath() {
|
||||
return sourcePath;
|
||||
}
|
||||
|
||||
public void setSourcePath(String sourcePath) {
|
||||
this.sourcePath = sourcePath == null ? null : sourcePath.trim();
|
||||
}
|
||||
|
||||
public Integer getBrandId() {
|
||||
return brandId;
|
||||
}
|
||||
|
||||
public void setBrandId(Integer brandId) {
|
||||
this.brandId = brandId;
|
||||
}
|
||||
|
||||
public String getMerchantId() {
|
||||
return merchantId;
|
||||
}
|
||||
|
||||
public void setMerchantId(String merchantId) {
|
||||
this.merchantId = merchantId == null ? null : merchantId.trim();
|
||||
}
|
||||
|
||||
public String getShopId() {
|
||||
return shopId;
|
||||
}
|
||||
|
||||
public void setShopId(String shopId) {
|
||||
this.shopId = shopId == null ? null : shopId.trim();
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name == null ? null : name.trim();
|
||||
}
|
||||
|
||||
public String getShortTitle() {
|
||||
return shortTitle;
|
||||
}
|
||||
|
||||
public void setShortTitle(String shortTitle) {
|
||||
this.shortTitle = shortTitle == null ? null : shortTitle.trim();
|
||||
}
|
||||
|
||||
public String getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
public void setType(String type) {
|
||||
this.type = type == null ? null : type.trim();
|
||||
}
|
||||
|
||||
public BigDecimal getPackFee() {
|
||||
return packFee;
|
||||
}
|
||||
|
||||
public void setPackFee(BigDecimal packFee) {
|
||||
this.packFee = packFee;
|
||||
}
|
||||
|
||||
public BigDecimal getLowPrice() {
|
||||
return lowPrice;
|
||||
}
|
||||
|
||||
public void setLowPrice(BigDecimal lowPrice) {
|
||||
this.lowPrice = lowPrice;
|
||||
}
|
||||
|
||||
public BigDecimal getLowMemberPrice() {
|
||||
return lowMemberPrice;
|
||||
}
|
||||
|
||||
public void setLowMemberPrice(BigDecimal lowMemberPrice) {
|
||||
this.lowMemberPrice = lowMemberPrice;
|
||||
}
|
||||
|
||||
public String getUnitId() {
|
||||
return unitId;
|
||||
}
|
||||
|
||||
public void setUnitId(String unitId) {
|
||||
this.unitId = unitId == null ? null : unitId.trim();
|
||||
}
|
||||
|
||||
public String getUnitSnap() {
|
||||
return unitSnap;
|
||||
}
|
||||
|
||||
public void setUnitSnap(String unitSnap) {
|
||||
this.unitSnap = unitSnap == null ? null : unitSnap.trim();
|
||||
}
|
||||
|
||||
public String getCoverImg() {
|
||||
return coverImg;
|
||||
}
|
||||
|
||||
public void setCoverImg(String coverImg) {
|
||||
this.coverImg = coverImg == null ? null : coverImg.trim();
|
||||
}
|
||||
|
||||
public String getShareImg() {
|
||||
return shareImg;
|
||||
}
|
||||
|
||||
public void setShareImg(String shareImg) {
|
||||
this.shareImg = shareImg == null ? null : shareImg.trim();
|
||||
}
|
||||
|
||||
public String getVideoCoverImg() {
|
||||
return videoCoverImg;
|
||||
}
|
||||
|
||||
public void setVideoCoverImg(String videoCoverImg) {
|
||||
this.videoCoverImg = videoCoverImg == null ? null : videoCoverImg.trim();
|
||||
}
|
||||
|
||||
public Integer getSort() {
|
||||
return sort;
|
||||
}
|
||||
|
||||
public void setSort(Integer sort) {
|
||||
this.sort = sort;
|
||||
}
|
||||
|
||||
public Integer getLimitNumber() {
|
||||
return limitNumber;
|
||||
}
|
||||
|
||||
public void setLimitNumber(Integer limitNumber) {
|
||||
this.limitNumber = limitNumber;
|
||||
}
|
||||
|
||||
public Integer getProductScore() {
|
||||
return productScore;
|
||||
}
|
||||
|
||||
public void setProductScore(Integer productScore) {
|
||||
this.productScore = productScore;
|
||||
}
|
||||
|
||||
public Byte getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
public void setStatus(Byte status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String getFailMsg() {
|
||||
return failMsg;
|
||||
}
|
||||
|
||||
public void setFailMsg(String failMsg) {
|
||||
this.failMsg = failMsg == null ? null : failMsg.trim();
|
||||
}
|
||||
|
||||
public Byte getIsRecommend() {
|
||||
return isRecommend;
|
||||
}
|
||||
|
||||
public void setIsRecommend(Byte isRecommend) {
|
||||
this.isRecommend = isRecommend;
|
||||
}
|
||||
|
||||
public Byte getIsHot() {
|
||||
return isHot;
|
||||
}
|
||||
|
||||
public void setIsHot(Byte isHot) {
|
||||
this.isHot = isHot;
|
||||
}
|
||||
|
||||
public Byte getIsNew() {
|
||||
return isNew;
|
||||
}
|
||||
|
||||
public void setIsNew(Byte isNew) {
|
||||
this.isNew = isNew;
|
||||
}
|
||||
|
||||
public Byte getIsOnSale() {
|
||||
return isOnSale;
|
||||
}
|
||||
|
||||
public void setIsOnSale(Byte isOnSale) {
|
||||
this.isOnSale = isOnSale;
|
||||
}
|
||||
|
||||
public Byte getIsShow() {
|
||||
return isShow;
|
||||
}
|
||||
|
||||
public void setIsShow(Byte isShow) {
|
||||
this.isShow = isShow;
|
||||
}
|
||||
|
||||
public String getTypeEnum() {
|
||||
return typeEnum;
|
||||
}
|
||||
|
||||
public void setTypeEnum(String typeEnum) {
|
||||
this.typeEnum = typeEnum == null ? null : typeEnum.trim();
|
||||
}
|
||||
|
||||
public Byte getIsDistribute() {
|
||||
return isDistribute;
|
||||
}
|
||||
|
||||
public void setIsDistribute(Byte isDistribute) {
|
||||
this.isDistribute = isDistribute;
|
||||
}
|
||||
|
||||
public Byte getIsDel() {
|
||||
return isDel;
|
||||
}
|
||||
|
||||
public void setIsDel(Byte isDel) {
|
||||
this.isDel = isDel;
|
||||
}
|
||||
|
||||
public Byte getIsStock() {
|
||||
return isStock;
|
||||
}
|
||||
|
||||
public void setIsStock(Byte isStock) {
|
||||
this.isStock = isStock;
|
||||
}
|
||||
|
||||
public Byte getIsPauseSale() {
|
||||
return isPauseSale;
|
||||
}
|
||||
|
||||
public void setIsPauseSale(Byte isPauseSale) {
|
||||
this.isPauseSale = isPauseSale;
|
||||
}
|
||||
|
||||
public Byte getIsFreeFreight() {
|
||||
return isFreeFreight;
|
||||
}
|
||||
|
||||
public void setIsFreeFreight(Byte isFreeFreight) {
|
||||
this.isFreeFreight = isFreeFreight;
|
||||
}
|
||||
|
||||
public Long getFreightId() {
|
||||
return freightId;
|
||||
}
|
||||
|
||||
public void setFreightId(Long freightId) {
|
||||
this.freightId = freightId;
|
||||
}
|
||||
|
||||
public String getStrategyType() {
|
||||
return strategyType;
|
||||
}
|
||||
|
||||
public void setStrategyType(String strategyType) {
|
||||
this.strategyType = strategyType == null ? null : strategyType.trim();
|
||||
}
|
||||
|
||||
public Integer getStrategyId() {
|
||||
return strategyId;
|
||||
}
|
||||
|
||||
public void setStrategyId(Integer strategyId) {
|
||||
this.strategyId = strategyId;
|
||||
}
|
||||
|
||||
public Byte getIsVip() {
|
||||
return isVip;
|
||||
}
|
||||
|
||||
public void setIsVip(Byte isVip) {
|
||||
this.isVip = isVip;
|
||||
}
|
||||
|
||||
public Byte getIsDelete() {
|
||||
return isDelete;
|
||||
}
|
||||
|
||||
public void setIsDelete(Byte isDelete) {
|
||||
this.isDelete = isDelete;
|
||||
}
|
||||
|
||||
public Long getCreatedAt() {
|
||||
return createdAt;
|
||||
}
|
||||
|
||||
public void setCreatedAt(Long createdAt) {
|
||||
this.createdAt = createdAt;
|
||||
}
|
||||
|
||||
public Long getUpdatedAt() {
|
||||
return updatedAt;
|
||||
}
|
||||
|
||||
public void setUpdatedAt(Long updatedAt) {
|
||||
this.updatedAt = updatedAt;
|
||||
}
|
||||
|
||||
public Double getBaseSalesNumber() {
|
||||
return baseSalesNumber;
|
||||
}
|
||||
|
||||
public void setBaseSalesNumber(Double baseSalesNumber) {
|
||||
this.baseSalesNumber = baseSalesNumber;
|
||||
}
|
||||
|
||||
public Integer getRealSalesNumber() {
|
||||
return realSalesNumber;
|
||||
}
|
||||
|
||||
public void setRealSalesNumber(Integer realSalesNumber) {
|
||||
this.realSalesNumber = realSalesNumber;
|
||||
}
|
||||
|
||||
public Integer getSalesNumber() {
|
||||
return salesNumber;
|
||||
}
|
||||
|
||||
public void setSalesNumber(Integer salesNumber) {
|
||||
this.salesNumber = salesNumber;
|
||||
}
|
||||
|
||||
public Integer getThumbCount() {
|
||||
return thumbCount;
|
||||
}
|
||||
|
||||
public void setThumbCount(Integer thumbCount) {
|
||||
this.thumbCount = thumbCount;
|
||||
}
|
||||
|
||||
public Integer getStoreCount() {
|
||||
return storeCount;
|
||||
}
|
||||
|
||||
public void setStoreCount(Integer storeCount) {
|
||||
this.storeCount = storeCount;
|
||||
}
|
||||
|
||||
public Integer getFurnishMeal() {
|
||||
return furnishMeal;
|
||||
}
|
||||
|
||||
public void setFurnishMeal(Integer furnishMeal) {
|
||||
this.furnishMeal = furnishMeal;
|
||||
}
|
||||
|
||||
public Integer getFurnishExpress() {
|
||||
return furnishExpress;
|
||||
}
|
||||
|
||||
public void setFurnishExpress(Integer furnishExpress) {
|
||||
this.furnishExpress = furnishExpress;
|
||||
}
|
||||
|
||||
public Integer getFurnishDraw() {
|
||||
return furnishDraw;
|
||||
}
|
||||
|
||||
public void setFurnishDraw(Integer furnishDraw) {
|
||||
this.furnishDraw = furnishDraw;
|
||||
}
|
||||
|
||||
public Integer getFurnishVir() {
|
||||
return furnishVir;
|
||||
}
|
||||
|
||||
public void setFurnishVir(Integer furnishVir) {
|
||||
this.furnishVir = furnishVir;
|
||||
}
|
||||
|
||||
public Byte getIsCombo() {
|
||||
return isCombo;
|
||||
}
|
||||
|
||||
public void setIsCombo(Byte isCombo) {
|
||||
this.isCombo = isCombo;
|
||||
}
|
||||
|
||||
public Byte getIsShowCash() {
|
||||
return isShowCash;
|
||||
}
|
||||
|
||||
public void setIsShowCash(Byte isShowCash) {
|
||||
this.isShowCash = isShowCash;
|
||||
}
|
||||
|
||||
public Byte getIsShowMall() {
|
||||
return isShowMall;
|
||||
}
|
||||
|
||||
public void setIsShowMall(Byte isShowMall) {
|
||||
this.isShowMall = isShowMall;
|
||||
}
|
||||
|
||||
public Byte getIsNeedExamine() {
|
||||
return isNeedExamine;
|
||||
}
|
||||
|
||||
public void setIsNeedExamine(Byte isNeedExamine) {
|
||||
this.isNeedExamine = isNeedExamine;
|
||||
}
|
||||
|
||||
public Byte getShowOnMallStatus() {
|
||||
return showOnMallStatus;
|
||||
}
|
||||
|
||||
public void setShowOnMallStatus(Byte showOnMallStatus) {
|
||||
this.showOnMallStatus = showOnMallStatus;
|
||||
}
|
||||
|
||||
public Long getShowOnMallTime() {
|
||||
return showOnMallTime;
|
||||
}
|
||||
|
||||
public void setShowOnMallTime(Long showOnMallTime) {
|
||||
this.showOnMallTime = showOnMallTime;
|
||||
}
|
||||
|
||||
public String getShowOnMallErrorMsg() {
|
||||
return showOnMallErrorMsg;
|
||||
}
|
||||
|
||||
public void setShowOnMallErrorMsg(String showOnMallErrorMsg) {
|
||||
this.showOnMallErrorMsg = showOnMallErrorMsg == null ? null : showOnMallErrorMsg.trim();
|
||||
}
|
||||
|
||||
public Byte getEnableLabel() {
|
||||
return enableLabel;
|
||||
}
|
||||
|
||||
public void setEnableLabel(Byte enableLabel) {
|
||||
this.enableLabel = enableLabel;
|
||||
}
|
||||
|
||||
public String getTaxConfigId() {
|
||||
return taxConfigId;
|
||||
}
|
||||
|
||||
public void setTaxConfigId(String taxConfigId) {
|
||||
this.taxConfigId = taxConfigId == null ? null : taxConfigId.trim();
|
||||
}
|
||||
|
||||
public String getSpecTableHeaders() {
|
||||
return specTableHeaders;
|
||||
}
|
||||
|
||||
public void setSpecTableHeaders(String specTableHeaders) {
|
||||
this.specTableHeaders = specTableHeaders == null ? null : specTableHeaders.trim();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,147 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity;
|
||||
|
||||
|
||||
import org.springframework.data.annotation.Transient;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class TbProductGroup implements Serializable {
|
||||
private Integer id;
|
||||
|
||||
private String name;
|
||||
|
||||
private String merchantId;
|
||||
|
||||
private Integer shopId;
|
||||
|
||||
private String pic;
|
||||
|
||||
private Byte isShow;
|
||||
|
||||
private String detail;
|
||||
|
||||
private String style;
|
||||
|
||||
private Integer sort;
|
||||
|
||||
private Long createdAt;
|
||||
|
||||
private Long updatedAt;
|
||||
|
||||
private String productIds;
|
||||
|
||||
|
||||
|
||||
@Transient
|
||||
private List<TbProduct> products;
|
||||
|
||||
|
||||
|
||||
|
||||
public List<TbProduct> getProducts() {
|
||||
return products;
|
||||
}
|
||||
|
||||
public void setProducts(List<TbProduct> products) {
|
||||
this.products = products;
|
||||
}
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name == null ? null : name.trim();
|
||||
}
|
||||
|
||||
public String getMerchantId() {
|
||||
return merchantId;
|
||||
}
|
||||
|
||||
public void setMerchantId(String merchantId) {
|
||||
this.merchantId = merchantId == null ? null : merchantId.trim();
|
||||
}
|
||||
|
||||
public Integer getShopId() {
|
||||
return shopId;
|
||||
}
|
||||
|
||||
public void setShopId(Integer shopId) {
|
||||
this.shopId = shopId;
|
||||
}
|
||||
|
||||
public String getPic() {
|
||||
return pic;
|
||||
}
|
||||
|
||||
public void setPic(String pic) {
|
||||
this.pic = pic == null ? null : pic.trim();
|
||||
}
|
||||
|
||||
public Byte getIsShow() {
|
||||
return isShow;
|
||||
}
|
||||
|
||||
public void setIsShow(Byte isShow) {
|
||||
this.isShow = isShow;
|
||||
}
|
||||
|
||||
public String getDetail() {
|
||||
return detail;
|
||||
}
|
||||
|
||||
public void setDetail(String detail) {
|
||||
this.detail = detail == null ? null : detail.trim();
|
||||
}
|
||||
|
||||
public String getStyle() {
|
||||
return style;
|
||||
}
|
||||
|
||||
public void setStyle(String style) {
|
||||
this.style = style == null ? null : style.trim();
|
||||
}
|
||||
|
||||
public Integer getSort() {
|
||||
return sort;
|
||||
}
|
||||
|
||||
public void setSort(Integer sort) {
|
||||
this.sort = sort;
|
||||
}
|
||||
|
||||
public Long getCreatedAt() {
|
||||
return createdAt;
|
||||
}
|
||||
|
||||
public void setCreatedAt(Long createdAt) {
|
||||
this.createdAt = createdAt;
|
||||
}
|
||||
|
||||
public Long getUpdatedAt() {
|
||||
return updatedAt;
|
||||
}
|
||||
|
||||
public void setUpdatedAt(Long updatedAt) {
|
||||
this.updatedAt = updatedAt;
|
||||
}
|
||||
|
||||
public String getProductIds() {
|
||||
return productIds;
|
||||
}
|
||||
|
||||
public void setProductIds(String productIds) {
|
||||
this.productIds = productIds == null ? null : productIds.trim();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,218 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.math.BigDecimal;
|
||||
|
||||
public class TbProductSku implements Serializable {
|
||||
private Integer id;
|
||||
|
||||
private String shopId;
|
||||
|
||||
private String barCode;
|
||||
|
||||
private String productId;
|
||||
|
||||
private BigDecimal originPrice;
|
||||
|
||||
private BigDecimal costPrice;
|
||||
|
||||
private BigDecimal memberPrice;
|
||||
|
||||
private BigDecimal mealPrice;
|
||||
|
||||
private BigDecimal salePrice;
|
||||
|
||||
private BigDecimal guidePrice;
|
||||
|
||||
private BigDecimal strategyPrice;
|
||||
|
||||
private Double stockNumber;
|
||||
|
||||
private String coverImg;
|
||||
|
||||
private Integer warnLine;
|
||||
|
||||
private Double weight;
|
||||
|
||||
private Float volume;
|
||||
|
||||
private Double realSalesNumber;
|
||||
|
||||
private BigDecimal firstShared;
|
||||
|
||||
private BigDecimal secondShared;
|
||||
|
||||
private Long createdAt;
|
||||
|
||||
private Long updatedAt;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getShopId() {
|
||||
return shopId;
|
||||
}
|
||||
|
||||
public void setShopId(String shopId) {
|
||||
this.shopId = shopId == null ? null : shopId.trim();
|
||||
}
|
||||
|
||||
public String getBarCode() {
|
||||
return barCode;
|
||||
}
|
||||
|
||||
public void setBarCode(String barCode) {
|
||||
this.barCode = barCode == null ? null : barCode.trim();
|
||||
}
|
||||
|
||||
public String getProductId() {
|
||||
return productId;
|
||||
}
|
||||
|
||||
public void setProductId(String productId) {
|
||||
this.productId = productId == null ? null : productId.trim();
|
||||
}
|
||||
|
||||
public BigDecimal getOriginPrice() {
|
||||
return originPrice;
|
||||
}
|
||||
|
||||
public void setOriginPrice(BigDecimal originPrice) {
|
||||
this.originPrice = originPrice;
|
||||
}
|
||||
|
||||
public BigDecimal getCostPrice() {
|
||||
return costPrice;
|
||||
}
|
||||
|
||||
public void setCostPrice(BigDecimal costPrice) {
|
||||
this.costPrice = costPrice;
|
||||
}
|
||||
|
||||
public BigDecimal getMemberPrice() {
|
||||
return memberPrice;
|
||||
}
|
||||
|
||||
public void setMemberPrice(BigDecimal memberPrice) {
|
||||
this.memberPrice = memberPrice;
|
||||
}
|
||||
|
||||
public BigDecimal getMealPrice() {
|
||||
return mealPrice;
|
||||
}
|
||||
|
||||
public void setMealPrice(BigDecimal mealPrice) {
|
||||
this.mealPrice = mealPrice;
|
||||
}
|
||||
|
||||
public BigDecimal getSalePrice() {
|
||||
return salePrice;
|
||||
}
|
||||
|
||||
public void setSalePrice(BigDecimal salePrice) {
|
||||
this.salePrice = salePrice;
|
||||
}
|
||||
|
||||
public BigDecimal getGuidePrice() {
|
||||
return guidePrice;
|
||||
}
|
||||
|
||||
public void setGuidePrice(BigDecimal guidePrice) {
|
||||
this.guidePrice = guidePrice;
|
||||
}
|
||||
|
||||
public BigDecimal getStrategyPrice() {
|
||||
return strategyPrice;
|
||||
}
|
||||
|
||||
public void setStrategyPrice(BigDecimal strategyPrice) {
|
||||
this.strategyPrice = strategyPrice;
|
||||
}
|
||||
|
||||
public Double getStockNumber() {
|
||||
return stockNumber;
|
||||
}
|
||||
|
||||
public void setStockNumber(Double stockNumber) {
|
||||
this.stockNumber = stockNumber;
|
||||
}
|
||||
|
||||
public String getCoverImg() {
|
||||
return coverImg;
|
||||
}
|
||||
|
||||
public void setCoverImg(String coverImg) {
|
||||
this.coverImg = coverImg == null ? null : coverImg.trim();
|
||||
}
|
||||
|
||||
public Integer getWarnLine() {
|
||||
return warnLine;
|
||||
}
|
||||
|
||||
public void setWarnLine(Integer warnLine) {
|
||||
this.warnLine = warnLine;
|
||||
}
|
||||
|
||||
public Double getWeight() {
|
||||
return weight;
|
||||
}
|
||||
|
||||
public void setWeight(Double weight) {
|
||||
this.weight = weight;
|
||||
}
|
||||
|
||||
public Float getVolume() {
|
||||
return volume;
|
||||
}
|
||||
|
||||
public void setVolume(Float volume) {
|
||||
this.volume = volume;
|
||||
}
|
||||
|
||||
public Double getRealSalesNumber() {
|
||||
return realSalesNumber;
|
||||
}
|
||||
|
||||
public void setRealSalesNumber(Double realSalesNumber) {
|
||||
this.realSalesNumber = realSalesNumber;
|
||||
}
|
||||
|
||||
public BigDecimal getFirstShared() {
|
||||
return firstShared;
|
||||
}
|
||||
|
||||
public void setFirstShared(BigDecimal firstShared) {
|
||||
this.firstShared = firstShared;
|
||||
}
|
||||
|
||||
public BigDecimal getSecondShared() {
|
||||
return secondShared;
|
||||
}
|
||||
|
||||
public void setSecondShared(BigDecimal secondShared) {
|
||||
this.secondShared = secondShared;
|
||||
}
|
||||
|
||||
public Long getCreatedAt() {
|
||||
return createdAt;
|
||||
}
|
||||
|
||||
public void setCreatedAt(Long createdAt) {
|
||||
this.createdAt = createdAt;
|
||||
}
|
||||
|
||||
public Long getUpdatedAt() {
|
||||
return updatedAt;
|
||||
}
|
||||
|
||||
public void setUpdatedAt(Long updatedAt) {
|
||||
this.updatedAt = updatedAt;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,67 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class TbProductSkuResult implements Serializable {
|
||||
private Integer id;
|
||||
|
||||
private String merchantId;
|
||||
|
||||
private Long specId;
|
||||
|
||||
private Long createdAt;
|
||||
|
||||
private Long updatedAt;
|
||||
|
||||
private String tagSnap;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getMerchantId() {
|
||||
return merchantId;
|
||||
}
|
||||
|
||||
public void setMerchantId(String merchantId) {
|
||||
this.merchantId = merchantId == null ? null : merchantId.trim();
|
||||
}
|
||||
|
||||
public Long getSpecId() {
|
||||
return specId;
|
||||
}
|
||||
|
||||
public void setSpecId(Long specId) {
|
||||
this.specId = specId;
|
||||
}
|
||||
|
||||
public Long getCreatedAt() {
|
||||
return createdAt;
|
||||
}
|
||||
|
||||
public void setCreatedAt(Long createdAt) {
|
||||
this.createdAt = createdAt;
|
||||
}
|
||||
|
||||
public Long getUpdatedAt() {
|
||||
return updatedAt;
|
||||
}
|
||||
|
||||
public void setUpdatedAt(Long updatedAt) {
|
||||
this.updatedAt = updatedAt;
|
||||
}
|
||||
|
||||
public String getTagSnap() {
|
||||
return tagSnap;
|
||||
}
|
||||
|
||||
public void setTagSnap(String tagSnap) {
|
||||
this.tagSnap = tagSnap == null ? null : tagSnap.trim();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,27 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class TbProductSkuWithBLOBs extends TbProductSku implements Serializable {
|
||||
private String specInfo;
|
||||
|
||||
private String specSnap;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public String getSpecInfo() {
|
||||
return specInfo;
|
||||
}
|
||||
|
||||
public void setSpecInfo(String specInfo) {
|
||||
this.specInfo = specInfo == null ? null : specInfo.trim();
|
||||
}
|
||||
|
||||
public String getSpecSnap() {
|
||||
return specSnap;
|
||||
}
|
||||
|
||||
public void setSpecSnap(String specSnap) {
|
||||
this.specSnap = specSnap == null ? null : specSnap.trim();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,97 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class TbProductSpec implements Serializable {
|
||||
private Integer id;
|
||||
|
||||
private String shopId;
|
||||
|
||||
private String name;
|
||||
|
||||
private String specTag;
|
||||
|
||||
private String specTagDetail;
|
||||
|
||||
private Integer sort;
|
||||
|
||||
private Long createdAt;
|
||||
|
||||
private Long updatedAt;
|
||||
|
||||
private String specList;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getShopId() {
|
||||
return shopId;
|
||||
}
|
||||
|
||||
public void setShopId(String shopId) {
|
||||
this.shopId = shopId == null ? null : shopId.trim();
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name == null ? null : name.trim();
|
||||
}
|
||||
|
||||
public String getSpecTag() {
|
||||
return specTag;
|
||||
}
|
||||
|
||||
public void setSpecTag(String specTag) {
|
||||
this.specTag = specTag == null ? null : specTag.trim();
|
||||
}
|
||||
|
||||
public String getSpecTagDetail() {
|
||||
return specTagDetail;
|
||||
}
|
||||
|
||||
public void setSpecTagDetail(String specTagDetail) {
|
||||
this.specTagDetail = specTagDetail == null ? null : specTagDetail.trim();
|
||||
}
|
||||
|
||||
public Integer getSort() {
|
||||
return sort;
|
||||
}
|
||||
|
||||
public void setSort(Integer sort) {
|
||||
this.sort = sort;
|
||||
}
|
||||
|
||||
public Long getCreatedAt() {
|
||||
return createdAt;
|
||||
}
|
||||
|
||||
public void setCreatedAt(Long createdAt) {
|
||||
this.createdAt = createdAt;
|
||||
}
|
||||
|
||||
public Long getUpdatedAt() {
|
||||
return updatedAt;
|
||||
}
|
||||
|
||||
public void setUpdatedAt(Long updatedAt) {
|
||||
this.updatedAt = updatedAt;
|
||||
}
|
||||
|
||||
public String getSpecList() {
|
||||
return specList;
|
||||
}
|
||||
|
||||
public void setSpecList(String specList) {
|
||||
this.specList = specList == null ? null : specList.trim();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,268 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.math.BigDecimal;
|
||||
|
||||
public class TbProductStockDetail implements Serializable {
|
||||
private Long id;
|
||||
|
||||
private String skuId;
|
||||
|
||||
private String productId;
|
||||
|
||||
private String productName;
|
||||
|
||||
private Byte isStock;
|
||||
|
||||
private String specSnap;
|
||||
|
||||
private String unitName;
|
||||
|
||||
private String shopId;
|
||||
|
||||
private String recordId;
|
||||
|
||||
private String batchNumber;
|
||||
|
||||
private String sourcePath;
|
||||
|
||||
private String orderId;
|
||||
|
||||
private Byte subType;
|
||||
|
||||
private String type;
|
||||
|
||||
private Integer leftNumber;
|
||||
|
||||
private Long stockTime;
|
||||
|
||||
private Double stockNumber;
|
||||
|
||||
private BigDecimal costAmount;
|
||||
|
||||
private BigDecimal salesAmount;
|
||||
|
||||
private String operator;
|
||||
|
||||
private String remark;
|
||||
|
||||
private String barCode;
|
||||
|
||||
private String coverImg;
|
||||
|
||||
private Long createdAt;
|
||||
|
||||
private Long updatedAt;
|
||||
|
||||
private String stockSnap;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getSkuId() {
|
||||
return skuId;
|
||||
}
|
||||
|
||||
public void setSkuId(String skuId) {
|
||||
this.skuId = skuId == null ? null : skuId.trim();
|
||||
}
|
||||
|
||||
public String getProductId() {
|
||||
return productId;
|
||||
}
|
||||
|
||||
public void setProductId(String productId) {
|
||||
this.productId = productId == null ? null : productId.trim();
|
||||
}
|
||||
|
||||
public String getProductName() {
|
||||
return productName;
|
||||
}
|
||||
|
||||
public void setProductName(String productName) {
|
||||
this.productName = productName == null ? null : productName.trim();
|
||||
}
|
||||
|
||||
public Byte getIsStock() {
|
||||
return isStock;
|
||||
}
|
||||
|
||||
public void setIsStock(Byte isStock) {
|
||||
this.isStock = isStock;
|
||||
}
|
||||
|
||||
public String getSpecSnap() {
|
||||
return specSnap;
|
||||
}
|
||||
|
||||
public void setSpecSnap(String specSnap) {
|
||||
this.specSnap = specSnap == null ? null : specSnap.trim();
|
||||
}
|
||||
|
||||
public String getUnitName() {
|
||||
return unitName;
|
||||
}
|
||||
|
||||
public void setUnitName(String unitName) {
|
||||
this.unitName = unitName == null ? null : unitName.trim();
|
||||
}
|
||||
|
||||
public String getShopId() {
|
||||
return shopId;
|
||||
}
|
||||
|
||||
public void setShopId(String shopId) {
|
||||
this.shopId = shopId == null ? null : shopId.trim();
|
||||
}
|
||||
|
||||
public String getRecordId() {
|
||||
return recordId;
|
||||
}
|
||||
|
||||
public void setRecordId(String recordId) {
|
||||
this.recordId = recordId == null ? null : recordId.trim();
|
||||
}
|
||||
|
||||
public String getBatchNumber() {
|
||||
return batchNumber;
|
||||
}
|
||||
|
||||
public void setBatchNumber(String batchNumber) {
|
||||
this.batchNumber = batchNumber == null ? null : batchNumber.trim();
|
||||
}
|
||||
|
||||
public String getSourcePath() {
|
||||
return sourcePath;
|
||||
}
|
||||
|
||||
public void setSourcePath(String sourcePath) {
|
||||
this.sourcePath = sourcePath == null ? null : sourcePath.trim();
|
||||
}
|
||||
|
||||
public String getOrderId() {
|
||||
return orderId;
|
||||
}
|
||||
|
||||
public void setOrderId(String orderId) {
|
||||
this.orderId = orderId == null ? null : orderId.trim();
|
||||
}
|
||||
|
||||
public Byte getSubType() {
|
||||
return subType;
|
||||
}
|
||||
|
||||
public void setSubType(Byte subType) {
|
||||
this.subType = subType;
|
||||
}
|
||||
|
||||
public String getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
public void setType(String type) {
|
||||
this.type = type == null ? null : type.trim();
|
||||
}
|
||||
|
||||
public Integer getLeftNumber() {
|
||||
return leftNumber;
|
||||
}
|
||||
|
||||
public void setLeftNumber(Integer leftNumber) {
|
||||
this.leftNumber = leftNumber;
|
||||
}
|
||||
|
||||
public Long getStockTime() {
|
||||
return stockTime;
|
||||
}
|
||||
|
||||
public void setStockTime(Long stockTime) {
|
||||
this.stockTime = stockTime;
|
||||
}
|
||||
|
||||
public Double getStockNumber() {
|
||||
return stockNumber;
|
||||
}
|
||||
|
||||
public void setStockNumber(Double stockNumber) {
|
||||
this.stockNumber = stockNumber;
|
||||
}
|
||||
|
||||
public BigDecimal getCostAmount() {
|
||||
return costAmount;
|
||||
}
|
||||
|
||||
public void setCostAmount(BigDecimal costAmount) {
|
||||
this.costAmount = costAmount;
|
||||
}
|
||||
|
||||
public BigDecimal getSalesAmount() {
|
||||
return salesAmount;
|
||||
}
|
||||
|
||||
public void setSalesAmount(BigDecimal salesAmount) {
|
||||
this.salesAmount = salesAmount;
|
||||
}
|
||||
|
||||
public String getOperator() {
|
||||
return operator;
|
||||
}
|
||||
|
||||
public void setOperator(String operator) {
|
||||
this.operator = operator == null ? null : operator.trim();
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark == null ? null : remark.trim();
|
||||
}
|
||||
|
||||
public String getBarCode() {
|
||||
return barCode;
|
||||
}
|
||||
|
||||
public void setBarCode(String barCode) {
|
||||
this.barCode = barCode == null ? null : barCode.trim();
|
||||
}
|
||||
|
||||
public String getCoverImg() {
|
||||
return coverImg;
|
||||
}
|
||||
|
||||
public void setCoverImg(String coverImg) {
|
||||
this.coverImg = coverImg == null ? null : coverImg.trim();
|
||||
}
|
||||
|
||||
public Long getCreatedAt() {
|
||||
return createdAt;
|
||||
}
|
||||
|
||||
public void setCreatedAt(Long createdAt) {
|
||||
this.createdAt = createdAt;
|
||||
}
|
||||
|
||||
public Long getUpdatedAt() {
|
||||
return updatedAt;
|
||||
}
|
||||
|
||||
public void setUpdatedAt(Long updatedAt) {
|
||||
this.updatedAt = updatedAt;
|
||||
}
|
||||
|
||||
public String getStockSnap() {
|
||||
return stockSnap;
|
||||
}
|
||||
|
||||
public void setStockSnap(String stockSnap) {
|
||||
this.stockSnap = stockSnap == null ? null : stockSnap.trim();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,147 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class TbProductStockOperate implements Serializable {
|
||||
private Integer id;
|
||||
|
||||
private String shopId;
|
||||
|
||||
private String type;
|
||||
|
||||
private Byte subType;
|
||||
|
||||
private String batchNumber;
|
||||
|
||||
private String remark;
|
||||
|
||||
private Long stockTime;
|
||||
|
||||
private String operatorSnap;
|
||||
|
||||
private Long createdAt;
|
||||
|
||||
private Long updatedAt;
|
||||
|
||||
private String purveyorId;
|
||||
|
||||
private String purveyorName;
|
||||
|
||||
private String status;
|
||||
|
||||
private String stockSnap;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getShopId() {
|
||||
return shopId;
|
||||
}
|
||||
|
||||
public void setShopId(String shopId) {
|
||||
this.shopId = shopId == null ? null : shopId.trim();
|
||||
}
|
||||
|
||||
public String getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
public void setType(String type) {
|
||||
this.type = type == null ? null : type.trim();
|
||||
}
|
||||
|
||||
public Byte getSubType() {
|
||||
return subType;
|
||||
}
|
||||
|
||||
public void setSubType(Byte subType) {
|
||||
this.subType = subType;
|
||||
}
|
||||
|
||||
public String getBatchNumber() {
|
||||
return batchNumber;
|
||||
}
|
||||
|
||||
public void setBatchNumber(String batchNumber) {
|
||||
this.batchNumber = batchNumber == null ? null : batchNumber.trim();
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark == null ? null : remark.trim();
|
||||
}
|
||||
|
||||
public Long getStockTime() {
|
||||
return stockTime;
|
||||
}
|
||||
|
||||
public void setStockTime(Long stockTime) {
|
||||
this.stockTime = stockTime;
|
||||
}
|
||||
|
||||
public String getOperatorSnap() {
|
||||
return operatorSnap;
|
||||
}
|
||||
|
||||
public void setOperatorSnap(String operatorSnap) {
|
||||
this.operatorSnap = operatorSnap == null ? null : operatorSnap.trim();
|
||||
}
|
||||
|
||||
public Long getCreatedAt() {
|
||||
return createdAt;
|
||||
}
|
||||
|
||||
public void setCreatedAt(Long createdAt) {
|
||||
this.createdAt = createdAt;
|
||||
}
|
||||
|
||||
public Long getUpdatedAt() {
|
||||
return updatedAt;
|
||||
}
|
||||
|
||||
public void setUpdatedAt(Long updatedAt) {
|
||||
this.updatedAt = updatedAt;
|
||||
}
|
||||
|
||||
public String getPurveyorId() {
|
||||
return purveyorId;
|
||||
}
|
||||
|
||||
public void setPurveyorId(String purveyorId) {
|
||||
this.purveyorId = purveyorId == null ? null : purveyorId.trim();
|
||||
}
|
||||
|
||||
public String getPurveyorName() {
|
||||
return purveyorName;
|
||||
}
|
||||
|
||||
public void setPurveyorName(String purveyorName) {
|
||||
this.purveyorName = purveyorName == null ? null : purveyorName.trim();
|
||||
}
|
||||
|
||||
public String getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
public void setStatus(String status) {
|
||||
this.status = status == null ? null : status.trim();
|
||||
}
|
||||
|
||||
public String getStockSnap() {
|
||||
return stockSnap;
|
||||
}
|
||||
|
||||
public void setStockSnap(String stockSnap) {
|
||||
this.stockSnap = stockSnap == null ? null : stockSnap.trim();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,67 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class TbProductWithBLOBs extends TbProduct implements Serializable {
|
||||
private String images;
|
||||
|
||||
private String video;
|
||||
|
||||
private String notice;
|
||||
|
||||
private String groupSnap;
|
||||
|
||||
private String specInfo;
|
||||
|
||||
private String selectSpec;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public String getImages() {
|
||||
return images;
|
||||
}
|
||||
|
||||
public void setImages(String images) {
|
||||
this.images = images == null ? null : images.trim();
|
||||
}
|
||||
|
||||
public String getVideo() {
|
||||
return video;
|
||||
}
|
||||
|
||||
public void setVideo(String video) {
|
||||
this.video = video == null ? null : video.trim();
|
||||
}
|
||||
|
||||
public String getNotice() {
|
||||
return notice;
|
||||
}
|
||||
|
||||
public void setNotice(String notice) {
|
||||
this.notice = notice == null ? null : notice.trim();
|
||||
}
|
||||
|
||||
public String getGroupSnap() {
|
||||
return groupSnap;
|
||||
}
|
||||
|
||||
public void setGroupSnap(String groupSnap) {
|
||||
this.groupSnap = groupSnap == null ? null : groupSnap.trim();
|
||||
}
|
||||
|
||||
public String getSpecInfo() {
|
||||
return specInfo;
|
||||
}
|
||||
|
||||
public void setSpecInfo(String specInfo) {
|
||||
this.specInfo = specInfo == null ? null : specInfo.trim();
|
||||
}
|
||||
|
||||
public String getSelectSpec() {
|
||||
return selectSpec;
|
||||
}
|
||||
|
||||
public void setSelectSpec(String selectSpec) {
|
||||
this.selectSpec = selectSpec == null ? null : selectSpec.trim();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,207 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class TbReceiptSales implements Serializable {
|
||||
private Integer id;
|
||||
|
||||
private String title;
|
||||
|
||||
private String logo;
|
||||
|
||||
private Boolean showContactInfo;
|
||||
|
||||
private Boolean showMember;
|
||||
|
||||
private Boolean showMemberCode;
|
||||
|
||||
private Boolean showMemberScore;
|
||||
|
||||
private Boolean showMemberWallet;
|
||||
|
||||
private String footerRemark;
|
||||
|
||||
private Boolean showCashCharge;
|
||||
|
||||
private Boolean showSerialNo;
|
||||
|
||||
private Boolean bigSerialNo;
|
||||
|
||||
private String headerText;
|
||||
|
||||
private String headerTextAlign;
|
||||
|
||||
private String footerText;
|
||||
|
||||
private String footerTextAlign;
|
||||
|
||||
private String footerImage;
|
||||
|
||||
private String prePrint;
|
||||
|
||||
private Long createdAt;
|
||||
|
||||
private Long updatedAt;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getTitle() {
|
||||
return title;
|
||||
}
|
||||
|
||||
public void setTitle(String title) {
|
||||
this.title = title == null ? null : title.trim();
|
||||
}
|
||||
|
||||
public String getLogo() {
|
||||
return logo;
|
||||
}
|
||||
|
||||
public void setLogo(String logo) {
|
||||
this.logo = logo == null ? null : logo.trim();
|
||||
}
|
||||
|
||||
public Boolean getShowContactInfo() {
|
||||
return showContactInfo;
|
||||
}
|
||||
|
||||
public void setShowContactInfo(Boolean showContactInfo) {
|
||||
this.showContactInfo = showContactInfo;
|
||||
}
|
||||
|
||||
public Boolean getShowMember() {
|
||||
return showMember;
|
||||
}
|
||||
|
||||
public void setShowMember(Boolean showMember) {
|
||||
this.showMember = showMember;
|
||||
}
|
||||
|
||||
public Boolean getShowMemberCode() {
|
||||
return showMemberCode;
|
||||
}
|
||||
|
||||
public void setShowMemberCode(Boolean showMemberCode) {
|
||||
this.showMemberCode = showMemberCode;
|
||||
}
|
||||
|
||||
public Boolean getShowMemberScore() {
|
||||
return showMemberScore;
|
||||
}
|
||||
|
||||
public void setShowMemberScore(Boolean showMemberScore) {
|
||||
this.showMemberScore = showMemberScore;
|
||||
}
|
||||
|
||||
public Boolean getShowMemberWallet() {
|
||||
return showMemberWallet;
|
||||
}
|
||||
|
||||
public void setShowMemberWallet(Boolean showMemberWallet) {
|
||||
this.showMemberWallet = showMemberWallet;
|
||||
}
|
||||
|
||||
public String getFooterRemark() {
|
||||
return footerRemark;
|
||||
}
|
||||
|
||||
public void setFooterRemark(String footerRemark) {
|
||||
this.footerRemark = footerRemark == null ? null : footerRemark.trim();
|
||||
}
|
||||
|
||||
public Boolean getShowCashCharge() {
|
||||
return showCashCharge;
|
||||
}
|
||||
|
||||
public void setShowCashCharge(Boolean showCashCharge) {
|
||||
this.showCashCharge = showCashCharge;
|
||||
}
|
||||
|
||||
public Boolean getShowSerialNo() {
|
||||
return showSerialNo;
|
||||
}
|
||||
|
||||
public void setShowSerialNo(Boolean showSerialNo) {
|
||||
this.showSerialNo = showSerialNo;
|
||||
}
|
||||
|
||||
public Boolean getBigSerialNo() {
|
||||
return bigSerialNo;
|
||||
}
|
||||
|
||||
public void setBigSerialNo(Boolean bigSerialNo) {
|
||||
this.bigSerialNo = bigSerialNo;
|
||||
}
|
||||
|
||||
public String getHeaderText() {
|
||||
return headerText;
|
||||
}
|
||||
|
||||
public void setHeaderText(String headerText) {
|
||||
this.headerText = headerText == null ? null : headerText.trim();
|
||||
}
|
||||
|
||||
public String getHeaderTextAlign() {
|
||||
return headerTextAlign;
|
||||
}
|
||||
|
||||
public void setHeaderTextAlign(String headerTextAlign) {
|
||||
this.headerTextAlign = headerTextAlign == null ? null : headerTextAlign.trim();
|
||||
}
|
||||
|
||||
public String getFooterText() {
|
||||
return footerText;
|
||||
}
|
||||
|
||||
public void setFooterText(String footerText) {
|
||||
this.footerText = footerText == null ? null : footerText.trim();
|
||||
}
|
||||
|
||||
public String getFooterTextAlign() {
|
||||
return footerTextAlign;
|
||||
}
|
||||
|
||||
public void setFooterTextAlign(String footerTextAlign) {
|
||||
this.footerTextAlign = footerTextAlign == null ? null : footerTextAlign.trim();
|
||||
}
|
||||
|
||||
public String getFooterImage() {
|
||||
return footerImage;
|
||||
}
|
||||
|
||||
public void setFooterImage(String footerImage) {
|
||||
this.footerImage = footerImage == null ? null : footerImage.trim();
|
||||
}
|
||||
|
||||
public String getPrePrint() {
|
||||
return prePrint;
|
||||
}
|
||||
|
||||
public void setPrePrint(String prePrint) {
|
||||
this.prePrint = prePrint == null ? null : prePrint.trim();
|
||||
}
|
||||
|
||||
public Long getCreatedAt() {
|
||||
return createdAt;
|
||||
}
|
||||
|
||||
public void setCreatedAt(Long createdAt) {
|
||||
this.createdAt = createdAt;
|
||||
}
|
||||
|
||||
public Long getUpdatedAt() {
|
||||
return updatedAt;
|
||||
}
|
||||
|
||||
public void setUpdatedAt(Long updatedAt) {
|
||||
this.updatedAt = updatedAt;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,148 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.math.BigDecimal;
|
||||
|
||||
public class TbRenewalsPayLog implements Serializable {
|
||||
private Integer id;
|
||||
|
||||
private String payType;
|
||||
|
||||
private String shopId;
|
||||
|
||||
private String orderId;
|
||||
|
||||
private String openId;
|
||||
|
||||
private String userId;
|
||||
|
||||
private String transactionId;
|
||||
|
||||
private BigDecimal amount;
|
||||
|
||||
private Byte status;
|
||||
|
||||
private String remark;
|
||||
|
||||
private String attach;
|
||||
|
||||
private Long expiredAt;
|
||||
|
||||
private Long createdAt;
|
||||
|
||||
private Long updatedAt;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getPayType() {
|
||||
return payType;
|
||||
}
|
||||
|
||||
public void setPayType(String payType) {
|
||||
this.payType = payType == null ? null : payType.trim();
|
||||
}
|
||||
|
||||
public String getShopId() {
|
||||
return shopId;
|
||||
}
|
||||
|
||||
public void setShopId(String shopId) {
|
||||
this.shopId = shopId == null ? null : shopId.trim();
|
||||
}
|
||||
|
||||
public String getOrderId() {
|
||||
return orderId;
|
||||
}
|
||||
|
||||
public void setOrderId(String orderId) {
|
||||
this.orderId = orderId == null ? null : orderId.trim();
|
||||
}
|
||||
|
||||
public String getOpenId() {
|
||||
return openId;
|
||||
}
|
||||
|
||||
public void setOpenId(String openId) {
|
||||
this.openId = openId == null ? null : openId.trim();
|
||||
}
|
||||
|
||||
public String getUserId() {
|
||||
return userId;
|
||||
}
|
||||
|
||||
public void setUserId(String userId) {
|
||||
this.userId = userId == null ? null : userId.trim();
|
||||
}
|
||||
|
||||
public String getTransactionId() {
|
||||
return transactionId;
|
||||
}
|
||||
|
||||
public void setTransactionId(String transactionId) {
|
||||
this.transactionId = transactionId == null ? null : transactionId.trim();
|
||||
}
|
||||
|
||||
public BigDecimal getAmount() {
|
||||
return amount;
|
||||
}
|
||||
|
||||
public void setAmount(BigDecimal amount) {
|
||||
this.amount = amount;
|
||||
}
|
||||
|
||||
public Byte getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
public void setStatus(Byte status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark == null ? null : remark.trim();
|
||||
}
|
||||
|
||||
public String getAttach() {
|
||||
return attach;
|
||||
}
|
||||
|
||||
public void setAttach(String attach) {
|
||||
this.attach = attach == null ? null : attach.trim();
|
||||
}
|
||||
|
||||
public Long getExpiredAt() {
|
||||
return expiredAt;
|
||||
}
|
||||
|
||||
public void setExpiredAt(Long expiredAt) {
|
||||
this.expiredAt = expiredAt;
|
||||
}
|
||||
|
||||
public Long getCreatedAt() {
|
||||
return createdAt;
|
||||
}
|
||||
|
||||
public void setCreatedAt(Long createdAt) {
|
||||
this.createdAt = createdAt;
|
||||
}
|
||||
|
||||
public Long getUpdatedAt() {
|
||||
return updatedAt;
|
||||
}
|
||||
|
||||
public void setUpdatedAt(Long updatedAt) {
|
||||
this.updatedAt = updatedAt;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,97 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class TbShopArea implements Serializable {
|
||||
private Integer id;
|
||||
|
||||
private Integer shopId;
|
||||
|
||||
private Integer sort;
|
||||
|
||||
private String name;
|
||||
|
||||
private Integer price;
|
||||
|
||||
private String capacityRange;
|
||||
|
||||
private Long createdAt;
|
||||
|
||||
private Long updatedAt;
|
||||
|
||||
private String view;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Integer getShopId() {
|
||||
return shopId;
|
||||
}
|
||||
|
||||
public void setShopId(Integer shopId) {
|
||||
this.shopId = shopId;
|
||||
}
|
||||
|
||||
public Integer getSort() {
|
||||
return sort;
|
||||
}
|
||||
|
||||
public void setSort(Integer sort) {
|
||||
this.sort = sort;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name == null ? null : name.trim();
|
||||
}
|
||||
|
||||
public Integer getPrice() {
|
||||
return price;
|
||||
}
|
||||
|
||||
public void setPrice(Integer price) {
|
||||
this.price = price;
|
||||
}
|
||||
|
||||
public String getCapacityRange() {
|
||||
return capacityRange;
|
||||
}
|
||||
|
||||
public void setCapacityRange(String capacityRange) {
|
||||
this.capacityRange = capacityRange == null ? null : capacityRange.trim();
|
||||
}
|
||||
|
||||
public Long getCreatedAt() {
|
||||
return createdAt;
|
||||
}
|
||||
|
||||
public void setCreatedAt(Long createdAt) {
|
||||
this.createdAt = createdAt;
|
||||
}
|
||||
|
||||
public Long getUpdatedAt() {
|
||||
return updatedAt;
|
||||
}
|
||||
|
||||
public void setUpdatedAt(Long updatedAt) {
|
||||
this.updatedAt = updatedAt;
|
||||
}
|
||||
|
||||
public String getView() {
|
||||
return view;
|
||||
}
|
||||
|
||||
public void setView(String view) {
|
||||
this.view = view == null ? null : view.trim();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,37 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class TbShopCashSpread implements Serializable {
|
||||
private Integer id;
|
||||
|
||||
private Long createdAt;
|
||||
|
||||
private Long updatedAt;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Long getCreatedAt() {
|
||||
return createdAt;
|
||||
}
|
||||
|
||||
public void setCreatedAt(Long createdAt) {
|
||||
this.createdAt = createdAt;
|
||||
}
|
||||
|
||||
public Long getUpdatedAt() {
|
||||
return updatedAt;
|
||||
}
|
||||
|
||||
public void setUpdatedAt(Long updatedAt) {
|
||||
this.updatedAt = updatedAt;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,57 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class TbShopCashSpreadWithBLOBs extends TbShopCashSpread implements Serializable {
|
||||
private String saleReceipt;
|
||||
|
||||
private String triplicateReceipt;
|
||||
|
||||
private String screenConfig;
|
||||
|
||||
private String tagConfig;
|
||||
|
||||
private String scaleConfig;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public String getSaleReceipt() {
|
||||
return saleReceipt;
|
||||
}
|
||||
|
||||
public void setSaleReceipt(String saleReceipt) {
|
||||
this.saleReceipt = saleReceipt == null ? null : saleReceipt.trim();
|
||||
}
|
||||
|
||||
public String getTriplicateReceipt() {
|
||||
return triplicateReceipt;
|
||||
}
|
||||
|
||||
public void setTriplicateReceipt(String triplicateReceipt) {
|
||||
this.triplicateReceipt = triplicateReceipt == null ? null : triplicateReceipt.trim();
|
||||
}
|
||||
|
||||
public String getScreenConfig() {
|
||||
return screenConfig;
|
||||
}
|
||||
|
||||
public void setScreenConfig(String screenConfig) {
|
||||
this.screenConfig = screenConfig == null ? null : screenConfig.trim();
|
||||
}
|
||||
|
||||
public String getTagConfig() {
|
||||
return tagConfig;
|
||||
}
|
||||
|
||||
public void setTagConfig(String tagConfig) {
|
||||
this.tagConfig = tagConfig == null ? null : tagConfig.trim();
|
||||
}
|
||||
|
||||
public String getScaleConfig() {
|
||||
return scaleConfig;
|
||||
}
|
||||
|
||||
public void setScaleConfig(String scaleConfig) {
|
||||
this.scaleConfig = scaleConfig == null ? null : scaleConfig.trim();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,157 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class TbShopCategory implements Serializable {
|
||||
private Integer id;
|
||||
|
||||
private String name;
|
||||
|
||||
private String shortName;
|
||||
|
||||
private Integer tree;
|
||||
|
||||
private String pid;
|
||||
|
||||
private String pic;
|
||||
|
||||
private String merchantId;
|
||||
|
||||
private String shopId;
|
||||
|
||||
private String style;
|
||||
|
||||
private Byte isShow;
|
||||
|
||||
private String detail;
|
||||
|
||||
private Integer sort;
|
||||
|
||||
private String keyWord;
|
||||
|
||||
private Long createdAt;
|
||||
|
||||
private Long updatedAt;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name == null ? null : name.trim();
|
||||
}
|
||||
|
||||
public String getShortName() {
|
||||
return shortName;
|
||||
}
|
||||
|
||||
public void setShortName(String shortName) {
|
||||
this.shortName = shortName == null ? null : shortName.trim();
|
||||
}
|
||||
|
||||
public Integer getTree() {
|
||||
return tree;
|
||||
}
|
||||
|
||||
public void setTree(Integer tree) {
|
||||
this.tree = tree;
|
||||
}
|
||||
|
||||
public String getPid() {
|
||||
return pid;
|
||||
}
|
||||
|
||||
public void setPid(String pid) {
|
||||
this.pid = pid == null ? null : pid.trim();
|
||||
}
|
||||
|
||||
public String getPic() {
|
||||
return pic;
|
||||
}
|
||||
|
||||
public void setPic(String pic) {
|
||||
this.pic = pic == null ? null : pic.trim();
|
||||
}
|
||||
|
||||
public String getMerchantId() {
|
||||
return merchantId;
|
||||
}
|
||||
|
||||
public void setMerchantId(String merchantId) {
|
||||
this.merchantId = merchantId == null ? null : merchantId.trim();
|
||||
}
|
||||
|
||||
public String getShopId() {
|
||||
return shopId;
|
||||
}
|
||||
|
||||
public void setShopId(String shopId) {
|
||||
this.shopId = shopId == null ? null : shopId.trim();
|
||||
}
|
||||
|
||||
public String getStyle() {
|
||||
return style;
|
||||
}
|
||||
|
||||
public void setStyle(String style) {
|
||||
this.style = style == null ? null : style.trim();
|
||||
}
|
||||
|
||||
public Byte getIsShow() {
|
||||
return isShow;
|
||||
}
|
||||
|
||||
public void setIsShow(Byte isShow) {
|
||||
this.isShow = isShow;
|
||||
}
|
||||
|
||||
public String getDetail() {
|
||||
return detail;
|
||||
}
|
||||
|
||||
public void setDetail(String detail) {
|
||||
this.detail = detail == null ? null : detail.trim();
|
||||
}
|
||||
|
||||
public Integer getSort() {
|
||||
return sort;
|
||||
}
|
||||
|
||||
public void setSort(Integer sort) {
|
||||
this.sort = sort;
|
||||
}
|
||||
|
||||
public String getKeyWord() {
|
||||
return keyWord;
|
||||
}
|
||||
|
||||
public void setKeyWord(String keyWord) {
|
||||
this.keyWord = keyWord == null ? null : keyWord.trim();
|
||||
}
|
||||
|
||||
public Long getCreatedAt() {
|
||||
return createdAt;
|
||||
}
|
||||
|
||||
public void setCreatedAt(Long createdAt) {
|
||||
this.createdAt = createdAt;
|
||||
}
|
||||
|
||||
public Long getUpdatedAt() {
|
||||
return updatedAt;
|
||||
}
|
||||
|
||||
public void setUpdatedAt(Long updatedAt) {
|
||||
this.updatedAt = updatedAt;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,208 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.math.BigDecimal;
|
||||
|
||||
public class TbShopCurrency implements Serializable {
|
||||
private Integer id;
|
||||
|
||||
private String shopId;
|
||||
|
||||
private BigDecimal prepareAmount;
|
||||
|
||||
private String currency;
|
||||
|
||||
private Byte decimalsDigits;
|
||||
|
||||
private String discountRound;
|
||||
|
||||
private String merchantId;
|
||||
|
||||
private Byte smallChange;
|
||||
|
||||
private Byte enableCustomDiscount;
|
||||
|
||||
private BigDecimal maxDiscount;
|
||||
|
||||
private Double maxPercent;
|
||||
|
||||
private String bizDuration;
|
||||
|
||||
private Byte allowWebPay;
|
||||
|
||||
private Byte isAutoToZero;
|
||||
|
||||
private Byte isIncludeTaxPrice;
|
||||
|
||||
private String taxNumber;
|
||||
|
||||
private Long createdAt;
|
||||
|
||||
private Long updatedAt;
|
||||
|
||||
private Byte autoLockScreen;
|
||||
|
||||
private Byte voiceNotification;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getShopId() {
|
||||
return shopId;
|
||||
}
|
||||
|
||||
public void setShopId(String shopId) {
|
||||
this.shopId = shopId == null ? null : shopId.trim();
|
||||
}
|
||||
|
||||
public BigDecimal getPrepareAmount() {
|
||||
return prepareAmount;
|
||||
}
|
||||
|
||||
public void setPrepareAmount(BigDecimal prepareAmount) {
|
||||
this.prepareAmount = prepareAmount;
|
||||
}
|
||||
|
||||
public String getCurrency() {
|
||||
return currency;
|
||||
}
|
||||
|
||||
public void setCurrency(String currency) {
|
||||
this.currency = currency == null ? null : currency.trim();
|
||||
}
|
||||
|
||||
public Byte getDecimalsDigits() {
|
||||
return decimalsDigits;
|
||||
}
|
||||
|
||||
public void setDecimalsDigits(Byte decimalsDigits) {
|
||||
this.decimalsDigits = decimalsDigits;
|
||||
}
|
||||
|
||||
public String getDiscountRound() {
|
||||
return discountRound;
|
||||
}
|
||||
|
||||
public void setDiscountRound(String discountRound) {
|
||||
this.discountRound = discountRound == null ? null : discountRound.trim();
|
||||
}
|
||||
|
||||
public String getMerchantId() {
|
||||
return merchantId;
|
||||
}
|
||||
|
||||
public void setMerchantId(String merchantId) {
|
||||
this.merchantId = merchantId == null ? null : merchantId.trim();
|
||||
}
|
||||
|
||||
public Byte getSmallChange() {
|
||||
return smallChange;
|
||||
}
|
||||
|
||||
public void setSmallChange(Byte smallChange) {
|
||||
this.smallChange = smallChange;
|
||||
}
|
||||
|
||||
public Byte getEnableCustomDiscount() {
|
||||
return enableCustomDiscount;
|
||||
}
|
||||
|
||||
public void setEnableCustomDiscount(Byte enableCustomDiscount) {
|
||||
this.enableCustomDiscount = enableCustomDiscount;
|
||||
}
|
||||
|
||||
public BigDecimal getMaxDiscount() {
|
||||
return maxDiscount;
|
||||
}
|
||||
|
||||
public void setMaxDiscount(BigDecimal maxDiscount) {
|
||||
this.maxDiscount = maxDiscount;
|
||||
}
|
||||
|
||||
public Double getMaxPercent() {
|
||||
return maxPercent;
|
||||
}
|
||||
|
||||
public void setMaxPercent(Double maxPercent) {
|
||||
this.maxPercent = maxPercent;
|
||||
}
|
||||
|
||||
public String getBizDuration() {
|
||||
return bizDuration;
|
||||
}
|
||||
|
||||
public void setBizDuration(String bizDuration) {
|
||||
this.bizDuration = bizDuration == null ? null : bizDuration.trim();
|
||||
}
|
||||
|
||||
public Byte getAllowWebPay() {
|
||||
return allowWebPay;
|
||||
}
|
||||
|
||||
public void setAllowWebPay(Byte allowWebPay) {
|
||||
this.allowWebPay = allowWebPay;
|
||||
}
|
||||
|
||||
public Byte getIsAutoToZero() {
|
||||
return isAutoToZero;
|
||||
}
|
||||
|
||||
public void setIsAutoToZero(Byte isAutoToZero) {
|
||||
this.isAutoToZero = isAutoToZero;
|
||||
}
|
||||
|
||||
public Byte getIsIncludeTaxPrice() {
|
||||
return isIncludeTaxPrice;
|
||||
}
|
||||
|
||||
public void setIsIncludeTaxPrice(Byte isIncludeTaxPrice) {
|
||||
this.isIncludeTaxPrice = isIncludeTaxPrice;
|
||||
}
|
||||
|
||||
public String getTaxNumber() {
|
||||
return taxNumber;
|
||||
}
|
||||
|
||||
public void setTaxNumber(String taxNumber) {
|
||||
this.taxNumber = taxNumber == null ? null : taxNumber.trim();
|
||||
}
|
||||
|
||||
public Long getCreatedAt() {
|
||||
return createdAt;
|
||||
}
|
||||
|
||||
public void setCreatedAt(Long createdAt) {
|
||||
this.createdAt = createdAt;
|
||||
}
|
||||
|
||||
public Long getUpdatedAt() {
|
||||
return updatedAt;
|
||||
}
|
||||
|
||||
public void setUpdatedAt(Long updatedAt) {
|
||||
this.updatedAt = updatedAt;
|
||||
}
|
||||
|
||||
public Byte getAutoLockScreen() {
|
||||
return autoLockScreen;
|
||||
}
|
||||
|
||||
public void setAutoLockScreen(Byte autoLockScreen) {
|
||||
this.autoLockScreen = autoLockScreen;
|
||||
}
|
||||
|
||||
public Byte getVoiceNotification() {
|
||||
return voiceNotification;
|
||||
}
|
||||
|
||||
public void setVoiceNotification(Byte voiceNotification) {
|
||||
this.voiceNotification = voiceNotification;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,27 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class TbShopCurrencyWithBLOBs extends TbShopCurrency implements Serializable {
|
||||
private String discountConfigs;
|
||||
|
||||
private String serviceCharge;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public String getDiscountConfigs() {
|
||||
return discountConfigs;
|
||||
}
|
||||
|
||||
public void setDiscountConfigs(String discountConfigs) {
|
||||
this.discountConfigs = discountConfigs == null ? null : discountConfigs.trim();
|
||||
}
|
||||
|
||||
public String getServiceCharge() {
|
||||
return serviceCharge;
|
||||
}
|
||||
|
||||
public void setServiceCharge(String serviceCharge) {
|
||||
this.serviceCharge = serviceCharge == null ? null : serviceCharge.trim();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,448 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.math.BigDecimal;
|
||||
|
||||
public class TbShopInfo implements Serializable {
|
||||
private Integer id;
|
||||
|
||||
private String account;
|
||||
|
||||
private String shopCode;
|
||||
|
||||
private String subTitle;
|
||||
|
||||
private String merchantId;
|
||||
|
||||
private String shopName;
|
||||
|
||||
private String chainName;
|
||||
|
||||
private String backImg;
|
||||
|
||||
private String frontImg;
|
||||
|
||||
private String contactName;
|
||||
|
||||
private String phone;
|
||||
|
||||
private String logo;
|
||||
|
||||
private Byte isDeposit;
|
||||
|
||||
private Byte isSupply;
|
||||
|
||||
private String coverImg;
|
||||
|
||||
private String shareImg;
|
||||
|
||||
private String detail;
|
||||
|
||||
private String lat;
|
||||
|
||||
private String lng;
|
||||
|
||||
private String mchId;
|
||||
|
||||
private String registerType;
|
||||
|
||||
private Byte isWxMaIndependent;
|
||||
|
||||
private String address;
|
||||
|
||||
private String city;
|
||||
|
||||
private String type;
|
||||
|
||||
private String industry;
|
||||
|
||||
private String industryName;
|
||||
|
||||
private String businessTime;
|
||||
|
||||
private String postTime;
|
||||
|
||||
private BigDecimal postAmountLine;
|
||||
|
||||
private Byte onSale;
|
||||
|
||||
private Byte settleType;
|
||||
|
||||
private String settleTime;
|
||||
|
||||
private Integer enterAt;
|
||||
|
||||
private Long expireAt;
|
||||
|
||||
private Byte status;
|
||||
|
||||
private Float average;
|
||||
|
||||
private Integer orderWaitPayMinute;
|
||||
|
||||
private Integer supportDeviceNumber;
|
||||
|
||||
private Byte distributeLevel;
|
||||
|
||||
private Long createdAt;
|
||||
|
||||
private Long updatedAt;
|
||||
|
||||
private String proxyId;
|
||||
|
||||
private String view;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getAccount() {
|
||||
return account;
|
||||
}
|
||||
|
||||
public void setAccount(String account) {
|
||||
this.account = account == null ? null : account.trim();
|
||||
}
|
||||
|
||||
public String getShopCode() {
|
||||
return shopCode;
|
||||
}
|
||||
|
||||
public void setShopCode(String shopCode) {
|
||||
this.shopCode = shopCode == null ? null : shopCode.trim();
|
||||
}
|
||||
|
||||
public String getSubTitle() {
|
||||
return subTitle;
|
||||
}
|
||||
|
||||
public void setSubTitle(String subTitle) {
|
||||
this.subTitle = subTitle == null ? null : subTitle.trim();
|
||||
}
|
||||
|
||||
public String getMerchantId() {
|
||||
return merchantId;
|
||||
}
|
||||
|
||||
public void setMerchantId(String merchantId) {
|
||||
this.merchantId = merchantId == null ? null : merchantId.trim();
|
||||
}
|
||||
|
||||
public String getShopName() {
|
||||
return shopName;
|
||||
}
|
||||
|
||||
public void setShopName(String shopName) {
|
||||
this.shopName = shopName == null ? null : shopName.trim();
|
||||
}
|
||||
|
||||
public String getChainName() {
|
||||
return chainName;
|
||||
}
|
||||
|
||||
public void setChainName(String chainName) {
|
||||
this.chainName = chainName == null ? null : chainName.trim();
|
||||
}
|
||||
|
||||
public String getBackImg() {
|
||||
return backImg;
|
||||
}
|
||||
|
||||
public void setBackImg(String backImg) {
|
||||
this.backImg = backImg == null ? null : backImg.trim();
|
||||
}
|
||||
|
||||
public String getFrontImg() {
|
||||
return frontImg;
|
||||
}
|
||||
|
||||
public void setFrontImg(String frontImg) {
|
||||
this.frontImg = frontImg == null ? null : frontImg.trim();
|
||||
}
|
||||
|
||||
public String getContactName() {
|
||||
return contactName;
|
||||
}
|
||||
|
||||
public void setContactName(String contactName) {
|
||||
this.contactName = contactName == null ? null : contactName.trim();
|
||||
}
|
||||
|
||||
public String getPhone() {
|
||||
return phone;
|
||||
}
|
||||
|
||||
public void setPhone(String phone) {
|
||||
this.phone = phone == null ? null : phone.trim();
|
||||
}
|
||||
|
||||
public String getLogo() {
|
||||
return logo;
|
||||
}
|
||||
|
||||
public void setLogo(String logo) {
|
||||
this.logo = logo == null ? null : logo.trim();
|
||||
}
|
||||
|
||||
public Byte getIsDeposit() {
|
||||
return isDeposit;
|
||||
}
|
||||
|
||||
public void setIsDeposit(Byte isDeposit) {
|
||||
this.isDeposit = isDeposit;
|
||||
}
|
||||
|
||||
public Byte getIsSupply() {
|
||||
return isSupply;
|
||||
}
|
||||
|
||||
public void setIsSupply(Byte isSupply) {
|
||||
this.isSupply = isSupply;
|
||||
}
|
||||
|
||||
public String getCoverImg() {
|
||||
return coverImg;
|
||||
}
|
||||
|
||||
public void setCoverImg(String coverImg) {
|
||||
this.coverImg = coverImg == null ? null : coverImg.trim();
|
||||
}
|
||||
|
||||
public String getShareImg() {
|
||||
return shareImg;
|
||||
}
|
||||
|
||||
public void setShareImg(String shareImg) {
|
||||
this.shareImg = shareImg == null ? null : shareImg.trim();
|
||||
}
|
||||
|
||||
public String getDetail() {
|
||||
return detail;
|
||||
}
|
||||
|
||||
public void setDetail(String detail) {
|
||||
this.detail = detail == null ? null : detail.trim();
|
||||
}
|
||||
|
||||
public String getLat() {
|
||||
return lat;
|
||||
}
|
||||
|
||||
public void setLat(String lat) {
|
||||
this.lat = lat == null ? null : lat.trim();
|
||||
}
|
||||
|
||||
public String getLng() {
|
||||
return lng;
|
||||
}
|
||||
|
||||
public void setLng(String lng) {
|
||||
this.lng = lng == null ? null : lng.trim();
|
||||
}
|
||||
|
||||
public String getMchId() {
|
||||
return mchId;
|
||||
}
|
||||
|
||||
public void setMchId(String mchId) {
|
||||
this.mchId = mchId == null ? null : mchId.trim();
|
||||
}
|
||||
|
||||
public String getRegisterType() {
|
||||
return registerType;
|
||||
}
|
||||
|
||||
public void setRegisterType(String registerType) {
|
||||
this.registerType = registerType == null ? null : registerType.trim();
|
||||
}
|
||||
|
||||
public Byte getIsWxMaIndependent() {
|
||||
return isWxMaIndependent;
|
||||
}
|
||||
|
||||
public void setIsWxMaIndependent(Byte isWxMaIndependent) {
|
||||
this.isWxMaIndependent = isWxMaIndependent;
|
||||
}
|
||||
|
||||
public String getAddress() {
|
||||
return address;
|
||||
}
|
||||
|
||||
public void setAddress(String address) {
|
||||
this.address = address == null ? null : address.trim();
|
||||
}
|
||||
|
||||
public String getCity() {
|
||||
return city;
|
||||
}
|
||||
|
||||
public void setCity(String city) {
|
||||
this.city = city == null ? null : city.trim();
|
||||
}
|
||||
|
||||
public String getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
public void setType(String type) {
|
||||
this.type = type == null ? null : type.trim();
|
||||
}
|
||||
|
||||
public String getIndustry() {
|
||||
return industry;
|
||||
}
|
||||
|
||||
public void setIndustry(String industry) {
|
||||
this.industry = industry == null ? null : industry.trim();
|
||||
}
|
||||
|
||||
public String getIndustryName() {
|
||||
return industryName;
|
||||
}
|
||||
|
||||
public void setIndustryName(String industryName) {
|
||||
this.industryName = industryName == null ? null : industryName.trim();
|
||||
}
|
||||
|
||||
public String getBusinessTime() {
|
||||
return businessTime;
|
||||
}
|
||||
|
||||
public void setBusinessTime(String businessTime) {
|
||||
this.businessTime = businessTime == null ? null : businessTime.trim();
|
||||
}
|
||||
|
||||
public String getPostTime() {
|
||||
return postTime;
|
||||
}
|
||||
|
||||
public void setPostTime(String postTime) {
|
||||
this.postTime = postTime == null ? null : postTime.trim();
|
||||
}
|
||||
|
||||
public BigDecimal getPostAmountLine() {
|
||||
return postAmountLine;
|
||||
}
|
||||
|
||||
public void setPostAmountLine(BigDecimal postAmountLine) {
|
||||
this.postAmountLine = postAmountLine;
|
||||
}
|
||||
|
||||
public Byte getOnSale() {
|
||||
return onSale;
|
||||
}
|
||||
|
||||
public void setOnSale(Byte onSale) {
|
||||
this.onSale = onSale;
|
||||
}
|
||||
|
||||
public Byte getSettleType() {
|
||||
return settleType;
|
||||
}
|
||||
|
||||
public void setSettleType(Byte settleType) {
|
||||
this.settleType = settleType;
|
||||
}
|
||||
|
||||
public String getSettleTime() {
|
||||
return settleTime;
|
||||
}
|
||||
|
||||
public void setSettleTime(String settleTime) {
|
||||
this.settleTime = settleTime == null ? null : settleTime.trim();
|
||||
}
|
||||
|
||||
public Integer getEnterAt() {
|
||||
return enterAt;
|
||||
}
|
||||
|
||||
public void setEnterAt(Integer enterAt) {
|
||||
this.enterAt = enterAt;
|
||||
}
|
||||
|
||||
public Long getExpireAt() {
|
||||
return expireAt;
|
||||
}
|
||||
|
||||
public void setExpireAt(Long expireAt) {
|
||||
this.expireAt = expireAt;
|
||||
}
|
||||
|
||||
public Byte getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
public void setStatus(Byte status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public Float getAverage() {
|
||||
return average;
|
||||
}
|
||||
|
||||
public void setAverage(Float average) {
|
||||
this.average = average;
|
||||
}
|
||||
|
||||
public Integer getOrderWaitPayMinute() {
|
||||
return orderWaitPayMinute;
|
||||
}
|
||||
|
||||
public void setOrderWaitPayMinute(Integer orderWaitPayMinute) {
|
||||
this.orderWaitPayMinute = orderWaitPayMinute;
|
||||
}
|
||||
|
||||
public Integer getSupportDeviceNumber() {
|
||||
return supportDeviceNumber;
|
||||
}
|
||||
|
||||
public void setSupportDeviceNumber(Integer supportDeviceNumber) {
|
||||
this.supportDeviceNumber = supportDeviceNumber;
|
||||
}
|
||||
|
||||
public Byte getDistributeLevel() {
|
||||
return distributeLevel;
|
||||
}
|
||||
|
||||
public void setDistributeLevel(Byte distributeLevel) {
|
||||
this.distributeLevel = distributeLevel;
|
||||
}
|
||||
|
||||
public Long getCreatedAt() {
|
||||
return createdAt;
|
||||
}
|
||||
|
||||
public void setCreatedAt(Long createdAt) {
|
||||
this.createdAt = createdAt;
|
||||
}
|
||||
|
||||
public Long getUpdatedAt() {
|
||||
return updatedAt;
|
||||
}
|
||||
|
||||
public void setUpdatedAt(Long updatedAt) {
|
||||
this.updatedAt = updatedAt;
|
||||
}
|
||||
|
||||
public String getProxyId() {
|
||||
return proxyId;
|
||||
}
|
||||
|
||||
public void setProxyId(String proxyId) {
|
||||
this.proxyId = proxyId == null ? null : proxyId.trim();
|
||||
}
|
||||
|
||||
public String getView() {
|
||||
return view;
|
||||
}
|
||||
|
||||
public void setView(String view) {
|
||||
this.view = view == null ? null : view.trim();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,137 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class TbShopPayType implements Serializable {
|
||||
private Integer id;
|
||||
|
||||
private String payType;
|
||||
|
||||
private String payName;
|
||||
|
||||
private Byte isShowShortcut;
|
||||
|
||||
private String shopId;
|
||||
|
||||
private Byte isRefundable;
|
||||
|
||||
private Byte isOpenCashDrawer;
|
||||
|
||||
private Byte isSystem;
|
||||
|
||||
private Byte isIdeal;
|
||||
|
||||
private Byte isDisplay;
|
||||
|
||||
private Integer sorts;
|
||||
|
||||
private Long createdAt;
|
||||
|
||||
private Long updatedAt;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getPayType() {
|
||||
return payType;
|
||||
}
|
||||
|
||||
public void setPayType(String payType) {
|
||||
this.payType = payType == null ? null : payType.trim();
|
||||
}
|
||||
|
||||
public String getPayName() {
|
||||
return payName;
|
||||
}
|
||||
|
||||
public void setPayName(String payName) {
|
||||
this.payName = payName == null ? null : payName.trim();
|
||||
}
|
||||
|
||||
public Byte getIsShowShortcut() {
|
||||
return isShowShortcut;
|
||||
}
|
||||
|
||||
public void setIsShowShortcut(Byte isShowShortcut) {
|
||||
this.isShowShortcut = isShowShortcut;
|
||||
}
|
||||
|
||||
public String getShopId() {
|
||||
return shopId;
|
||||
}
|
||||
|
||||
public void setShopId(String shopId) {
|
||||
this.shopId = shopId == null ? null : shopId.trim();
|
||||
}
|
||||
|
||||
public Byte getIsRefundable() {
|
||||
return isRefundable;
|
||||
}
|
||||
|
||||
public void setIsRefundable(Byte isRefundable) {
|
||||
this.isRefundable = isRefundable;
|
||||
}
|
||||
|
||||
public Byte getIsOpenCashDrawer() {
|
||||
return isOpenCashDrawer;
|
||||
}
|
||||
|
||||
public void setIsOpenCashDrawer(Byte isOpenCashDrawer) {
|
||||
this.isOpenCashDrawer = isOpenCashDrawer;
|
||||
}
|
||||
|
||||
public Byte getIsSystem() {
|
||||
return isSystem;
|
||||
}
|
||||
|
||||
public void setIsSystem(Byte isSystem) {
|
||||
this.isSystem = isSystem;
|
||||
}
|
||||
|
||||
public Byte getIsIdeal() {
|
||||
return isIdeal;
|
||||
}
|
||||
|
||||
public void setIsIdeal(Byte isIdeal) {
|
||||
this.isIdeal = isIdeal;
|
||||
}
|
||||
|
||||
public Byte getIsDisplay() {
|
||||
return isDisplay;
|
||||
}
|
||||
|
||||
public void setIsDisplay(Byte isDisplay) {
|
||||
this.isDisplay = isDisplay;
|
||||
}
|
||||
|
||||
public Integer getSorts() {
|
||||
return sorts;
|
||||
}
|
||||
|
||||
public void setSorts(Integer sorts) {
|
||||
this.sorts = sorts;
|
||||
}
|
||||
|
||||
public Long getCreatedAt() {
|
||||
return createdAt;
|
||||
}
|
||||
|
||||
public void setCreatedAt(Long createdAt) {
|
||||
this.createdAt = createdAt;
|
||||
}
|
||||
|
||||
public Long getUpdatedAt() {
|
||||
return updatedAt;
|
||||
}
|
||||
|
||||
public void setUpdatedAt(Long updatedAt) {
|
||||
this.updatedAt = updatedAt;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,137 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class TbShopPurveyor implements Serializable {
|
||||
private Integer id;
|
||||
|
||||
private String shopId;
|
||||
|
||||
private Integer sort;
|
||||
|
||||
private String name;
|
||||
|
||||
private String purveyorName;
|
||||
|
||||
private String purveyorTelephone;
|
||||
|
||||
private Integer period;
|
||||
|
||||
private String address;
|
||||
|
||||
private String tip;
|
||||
|
||||
private String remark;
|
||||
|
||||
private Long createdAt;
|
||||
|
||||
private Long updatedAt;
|
||||
|
||||
private Long lastTransactAt;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getShopId() {
|
||||
return shopId;
|
||||
}
|
||||
|
||||
public void setShopId(String shopId) {
|
||||
this.shopId = shopId == null ? null : shopId.trim();
|
||||
}
|
||||
|
||||
public Integer getSort() {
|
||||
return sort;
|
||||
}
|
||||
|
||||
public void setSort(Integer sort) {
|
||||
this.sort = sort;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name == null ? null : name.trim();
|
||||
}
|
||||
|
||||
public String getPurveyorName() {
|
||||
return purveyorName;
|
||||
}
|
||||
|
||||
public void setPurveyorName(String purveyorName) {
|
||||
this.purveyorName = purveyorName == null ? null : purveyorName.trim();
|
||||
}
|
||||
|
||||
public String getPurveyorTelephone() {
|
||||
return purveyorTelephone;
|
||||
}
|
||||
|
||||
public void setPurveyorTelephone(String purveyorTelephone) {
|
||||
this.purveyorTelephone = purveyorTelephone == null ? null : purveyorTelephone.trim();
|
||||
}
|
||||
|
||||
public Integer getPeriod() {
|
||||
return period;
|
||||
}
|
||||
|
||||
public void setPeriod(Integer period) {
|
||||
this.period = period;
|
||||
}
|
||||
|
||||
public String getAddress() {
|
||||
return address;
|
||||
}
|
||||
|
||||
public void setAddress(String address) {
|
||||
this.address = address == null ? null : address.trim();
|
||||
}
|
||||
|
||||
public String getTip() {
|
||||
return tip;
|
||||
}
|
||||
|
||||
public void setTip(String tip) {
|
||||
this.tip = tip == null ? null : tip.trim();
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark == null ? null : remark.trim();
|
||||
}
|
||||
|
||||
public Long getCreatedAt() {
|
||||
return createdAt;
|
||||
}
|
||||
|
||||
public void setCreatedAt(Long createdAt) {
|
||||
this.createdAt = createdAt;
|
||||
}
|
||||
|
||||
public Long getUpdatedAt() {
|
||||
return updatedAt;
|
||||
}
|
||||
|
||||
public void setUpdatedAt(Long updatedAt) {
|
||||
this.updatedAt = updatedAt;
|
||||
}
|
||||
|
||||
public Long getLastTransactAt() {
|
||||
return lastTransactAt;
|
||||
}
|
||||
|
||||
public void setLastTransactAt(Long lastTransactAt) {
|
||||
this.lastTransactAt = lastTransactAt;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,138 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.math.BigDecimal;
|
||||
|
||||
public class TbShopPurveyorTransact implements Serializable {
|
||||
private Integer id;
|
||||
|
||||
private String shopId;
|
||||
|
||||
private String purveyorName;
|
||||
|
||||
private String purveyorId;
|
||||
|
||||
private Byte status;
|
||||
|
||||
private String remark;
|
||||
|
||||
private Long createdAt;
|
||||
|
||||
private Long updatedAt;
|
||||
|
||||
private BigDecimal totalAmount;
|
||||
|
||||
private BigDecimal waitAmount;
|
||||
|
||||
private BigDecimal paidAmount;
|
||||
|
||||
private Long paidAt;
|
||||
|
||||
private String type;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getShopId() {
|
||||
return shopId;
|
||||
}
|
||||
|
||||
public void setShopId(String shopId) {
|
||||
this.shopId = shopId == null ? null : shopId.trim();
|
||||
}
|
||||
|
||||
public String getPurveyorName() {
|
||||
return purveyorName;
|
||||
}
|
||||
|
||||
public void setPurveyorName(String purveyorName) {
|
||||
this.purveyorName = purveyorName == null ? null : purveyorName.trim();
|
||||
}
|
||||
|
||||
public String getPurveyorId() {
|
||||
return purveyorId;
|
||||
}
|
||||
|
||||
public void setPurveyorId(String purveyorId) {
|
||||
this.purveyorId = purveyorId == null ? null : purveyorId.trim();
|
||||
}
|
||||
|
||||
public Byte getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
public void setStatus(Byte status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark == null ? null : remark.trim();
|
||||
}
|
||||
|
||||
public Long getCreatedAt() {
|
||||
return createdAt;
|
||||
}
|
||||
|
||||
public void setCreatedAt(Long createdAt) {
|
||||
this.createdAt = createdAt;
|
||||
}
|
||||
|
||||
public Long getUpdatedAt() {
|
||||
return updatedAt;
|
||||
}
|
||||
|
||||
public void setUpdatedAt(Long updatedAt) {
|
||||
this.updatedAt = updatedAt;
|
||||
}
|
||||
|
||||
public BigDecimal getTotalAmount() {
|
||||
return totalAmount;
|
||||
}
|
||||
|
||||
public void setTotalAmount(BigDecimal totalAmount) {
|
||||
this.totalAmount = totalAmount;
|
||||
}
|
||||
|
||||
public BigDecimal getWaitAmount() {
|
||||
return waitAmount;
|
||||
}
|
||||
|
||||
public void setWaitAmount(BigDecimal waitAmount) {
|
||||
this.waitAmount = waitAmount;
|
||||
}
|
||||
|
||||
public BigDecimal getPaidAmount() {
|
||||
return paidAmount;
|
||||
}
|
||||
|
||||
public void setPaidAmount(BigDecimal paidAmount) {
|
||||
this.paidAmount = paidAmount;
|
||||
}
|
||||
|
||||
public Long getPaidAt() {
|
||||
return paidAt;
|
||||
}
|
||||
|
||||
public void setPaidAt(Long paidAt) {
|
||||
this.paidAt = paidAt;
|
||||
}
|
||||
|
||||
public String getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
public void setType(String type) {
|
||||
this.type = type == null ? null : type.trim();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,179 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.math.BigDecimal;
|
||||
|
||||
public class TbShopTable implements Serializable {
|
||||
private Integer id;
|
||||
|
||||
private String name;
|
||||
|
||||
private Integer shopId;
|
||||
|
||||
private Integer maxCapacity;
|
||||
|
||||
private Integer sort;
|
||||
|
||||
private Integer areaId;
|
||||
|
||||
private Byte isPredate;
|
||||
|
||||
private BigDecimal predateAmount;
|
||||
|
||||
private String status;
|
||||
|
||||
private Byte type;
|
||||
|
||||
private BigDecimal amount;
|
||||
|
||||
private BigDecimal perhour;
|
||||
|
||||
private String view;
|
||||
|
||||
private Long createdAt;
|
||||
|
||||
private Long updatedAt;
|
||||
|
||||
private String qrcode;
|
||||
|
||||
private String areaname;
|
||||
|
||||
|
||||
public String getAreaname() {
|
||||
return areaname;
|
||||
}
|
||||
|
||||
public void setAreaname(String areaname) {
|
||||
this.areaname = areaname;
|
||||
}
|
||||
|
||||
public String getQrcode() {
|
||||
return qrcode;
|
||||
}
|
||||
|
||||
public void setQrcode(String qrcode) {
|
||||
this.qrcode = qrcode;
|
||||
}
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name == null ? null : name.trim();
|
||||
}
|
||||
|
||||
public Integer getShopId() {
|
||||
return shopId;
|
||||
}
|
||||
|
||||
public void setShopId(Integer shopId) {
|
||||
this.shopId = shopId;
|
||||
}
|
||||
|
||||
public Integer getMaxCapacity() {
|
||||
return maxCapacity;
|
||||
}
|
||||
|
||||
public void setMaxCapacity(Integer maxCapacity) {
|
||||
this.maxCapacity = maxCapacity;
|
||||
}
|
||||
|
||||
public Integer getSort() {
|
||||
return sort;
|
||||
}
|
||||
|
||||
public void setSort(Integer sort) {
|
||||
this.sort = sort;
|
||||
}
|
||||
|
||||
public Integer getAreaId() {
|
||||
return areaId;
|
||||
}
|
||||
|
||||
public void setAreaId(Integer areaId) {
|
||||
this.areaId = areaId;
|
||||
}
|
||||
|
||||
public Byte getIsPredate() {
|
||||
return isPredate;
|
||||
}
|
||||
|
||||
public void setIsPredate(Byte isPredate) {
|
||||
this.isPredate = isPredate;
|
||||
}
|
||||
|
||||
public BigDecimal getPredateAmount() {
|
||||
return predateAmount;
|
||||
}
|
||||
|
||||
public void setPredateAmount(BigDecimal predateAmount) {
|
||||
this.predateAmount = predateAmount;
|
||||
}
|
||||
|
||||
public String getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
public void setStatus(String status) {
|
||||
this.status = status == null ? null : status.trim();
|
||||
}
|
||||
|
||||
public Byte getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
public void setType(Byte type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public BigDecimal getAmount() {
|
||||
return amount;
|
||||
}
|
||||
|
||||
public void setAmount(BigDecimal amount) {
|
||||
this.amount = amount;
|
||||
}
|
||||
|
||||
public BigDecimal getPerhour() {
|
||||
return perhour;
|
||||
}
|
||||
|
||||
public void setPerhour(BigDecimal perhour) {
|
||||
this.perhour = perhour;
|
||||
}
|
||||
|
||||
public String getView() {
|
||||
return view;
|
||||
}
|
||||
|
||||
public void setView(String view) {
|
||||
this.view = view == null ? null : view.trim();
|
||||
}
|
||||
|
||||
public Long getCreatedAt() {
|
||||
return createdAt;
|
||||
}
|
||||
|
||||
public void setCreatedAt(Long createdAt) {
|
||||
this.createdAt = createdAt;
|
||||
}
|
||||
|
||||
public Long getUpdatedAt() {
|
||||
return updatedAt;
|
||||
}
|
||||
|
||||
public void setUpdatedAt(Long updatedAt) {
|
||||
this.updatedAt = updatedAt;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,107 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class TbShopUnit implements Serializable {
|
||||
private Integer id;
|
||||
|
||||
private String name;
|
||||
|
||||
private Integer decimalsDigits;
|
||||
|
||||
private String unitType;
|
||||
|
||||
private Byte isSystem;
|
||||
|
||||
private Byte status;
|
||||
|
||||
private String merchantId;
|
||||
|
||||
private String shopId;
|
||||
|
||||
private Long createdAt;
|
||||
|
||||
private Long updatedAt;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name == null ? null : name.trim();
|
||||
}
|
||||
|
||||
public Integer getDecimalsDigits() {
|
||||
return decimalsDigits;
|
||||
}
|
||||
|
||||
public void setDecimalsDigits(Integer decimalsDigits) {
|
||||
this.decimalsDigits = decimalsDigits;
|
||||
}
|
||||
|
||||
public String getUnitType() {
|
||||
return unitType;
|
||||
}
|
||||
|
||||
public void setUnitType(String unitType) {
|
||||
this.unitType = unitType == null ? null : unitType.trim();
|
||||
}
|
||||
|
||||
public Byte getIsSystem() {
|
||||
return isSystem;
|
||||
}
|
||||
|
||||
public void setIsSystem(Byte isSystem) {
|
||||
this.isSystem = isSystem;
|
||||
}
|
||||
|
||||
public Byte getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
public void setStatus(Byte status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String getMerchantId() {
|
||||
return merchantId;
|
||||
}
|
||||
|
||||
public void setMerchantId(String merchantId) {
|
||||
this.merchantId = merchantId == null ? null : merchantId.trim();
|
||||
}
|
||||
|
||||
public String getShopId() {
|
||||
return shopId;
|
||||
}
|
||||
|
||||
public void setShopId(String shopId) {
|
||||
this.shopId = shopId == null ? null : shopId.trim();
|
||||
}
|
||||
|
||||
public Long getCreatedAt() {
|
||||
return createdAt;
|
||||
}
|
||||
|
||||
public void setCreatedAt(Long createdAt) {
|
||||
this.createdAt = createdAt;
|
||||
}
|
||||
|
||||
public Long getUpdatedAt() {
|
||||
return updatedAt;
|
||||
}
|
||||
|
||||
public void setUpdatedAt(Long updatedAt) {
|
||||
this.updatedAt = updatedAt;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,288 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.math.BigDecimal;
|
||||
|
||||
public class TbShopUser implements Serializable {
|
||||
private String id;
|
||||
|
||||
private BigDecimal amount;
|
||||
|
||||
private BigDecimal creditAmount;
|
||||
|
||||
private BigDecimal consumeAmount;
|
||||
|
||||
private Integer consumeNumber;
|
||||
|
||||
private BigDecimal levelConsume;
|
||||
|
||||
private Byte status;
|
||||
|
||||
private String merchantId;
|
||||
|
||||
private String shopId;
|
||||
|
||||
private String userId;
|
||||
|
||||
private String parentId;
|
||||
|
||||
private String parentLevel;
|
||||
|
||||
private String name;
|
||||
|
||||
private String headImg;
|
||||
|
||||
private Byte sex;
|
||||
|
||||
private String birthDay;
|
||||
|
||||
private String telephone;
|
||||
|
||||
private Byte isVip;
|
||||
|
||||
private String code;
|
||||
|
||||
private Byte isAttention;
|
||||
|
||||
private Integer attentionAt;
|
||||
|
||||
private Byte isShareholder;
|
||||
|
||||
private Byte level;
|
||||
|
||||
private String distributeType;
|
||||
|
||||
private Integer sort;
|
||||
|
||||
private Long createdAt;
|
||||
|
||||
private Long updatedAt;
|
||||
|
||||
private String miniOpenId;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public String getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id == null ? null : id.trim();
|
||||
}
|
||||
|
||||
public BigDecimal getAmount() {
|
||||
return amount;
|
||||
}
|
||||
|
||||
public void setAmount(BigDecimal amount) {
|
||||
this.amount = amount;
|
||||
}
|
||||
|
||||
public BigDecimal getCreditAmount() {
|
||||
return creditAmount;
|
||||
}
|
||||
|
||||
public void setCreditAmount(BigDecimal creditAmount) {
|
||||
this.creditAmount = creditAmount;
|
||||
}
|
||||
|
||||
public BigDecimal getConsumeAmount() {
|
||||
return consumeAmount;
|
||||
}
|
||||
|
||||
public void setConsumeAmount(BigDecimal consumeAmount) {
|
||||
this.consumeAmount = consumeAmount;
|
||||
}
|
||||
|
||||
public Integer getConsumeNumber() {
|
||||
return consumeNumber;
|
||||
}
|
||||
|
||||
public void setConsumeNumber(Integer consumeNumber) {
|
||||
this.consumeNumber = consumeNumber;
|
||||
}
|
||||
|
||||
public BigDecimal getLevelConsume() {
|
||||
return levelConsume;
|
||||
}
|
||||
|
||||
public void setLevelConsume(BigDecimal levelConsume) {
|
||||
this.levelConsume = levelConsume;
|
||||
}
|
||||
|
||||
public Byte getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
public void setStatus(Byte status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String getMerchantId() {
|
||||
return merchantId;
|
||||
}
|
||||
|
||||
public void setMerchantId(String merchantId) {
|
||||
this.merchantId = merchantId == null ? null : merchantId.trim();
|
||||
}
|
||||
|
||||
public String getShopId() {
|
||||
return shopId;
|
||||
}
|
||||
|
||||
public void setShopId(String shopId) {
|
||||
this.shopId = shopId == null ? null : shopId.trim();
|
||||
}
|
||||
|
||||
public String getUserId() {
|
||||
return userId;
|
||||
}
|
||||
|
||||
public void setUserId(String userId) {
|
||||
this.userId = userId == null ? null : userId.trim();
|
||||
}
|
||||
|
||||
public String getParentId() {
|
||||
return parentId;
|
||||
}
|
||||
|
||||
public void setParentId(String parentId) {
|
||||
this.parentId = parentId == null ? null : parentId.trim();
|
||||
}
|
||||
|
||||
public String getParentLevel() {
|
||||
return parentLevel;
|
||||
}
|
||||
|
||||
public void setParentLevel(String parentLevel) {
|
||||
this.parentLevel = parentLevel == null ? null : parentLevel.trim();
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name == null ? null : name.trim();
|
||||
}
|
||||
|
||||
public String getHeadImg() {
|
||||
return headImg;
|
||||
}
|
||||
|
||||
public void setHeadImg(String headImg) {
|
||||
this.headImg = headImg == null ? null : headImg.trim();
|
||||
}
|
||||
|
||||
public Byte getSex() {
|
||||
return sex;
|
||||
}
|
||||
|
||||
public void setSex(Byte sex) {
|
||||
this.sex = sex;
|
||||
}
|
||||
|
||||
public String getBirthDay() {
|
||||
return birthDay;
|
||||
}
|
||||
|
||||
public void setBirthDay(String birthDay) {
|
||||
this.birthDay = birthDay == null ? null : birthDay.trim();
|
||||
}
|
||||
|
||||
public String getTelephone() {
|
||||
return telephone;
|
||||
}
|
||||
|
||||
public void setTelephone(String telephone) {
|
||||
this.telephone = telephone == null ? null : telephone.trim();
|
||||
}
|
||||
|
||||
public Byte getIsVip() {
|
||||
return isVip;
|
||||
}
|
||||
|
||||
public void setIsVip(Byte isVip) {
|
||||
this.isVip = isVip;
|
||||
}
|
||||
|
||||
public String getCode() {
|
||||
return code;
|
||||
}
|
||||
|
||||
public void setCode(String code) {
|
||||
this.code = code == null ? null : code.trim();
|
||||
}
|
||||
|
||||
public Byte getIsAttention() {
|
||||
return isAttention;
|
||||
}
|
||||
|
||||
public void setIsAttention(Byte isAttention) {
|
||||
this.isAttention = isAttention;
|
||||
}
|
||||
|
||||
public Integer getAttentionAt() {
|
||||
return attentionAt;
|
||||
}
|
||||
|
||||
public void setAttentionAt(Integer attentionAt) {
|
||||
this.attentionAt = attentionAt;
|
||||
}
|
||||
|
||||
public Byte getIsShareholder() {
|
||||
return isShareholder;
|
||||
}
|
||||
|
||||
public void setIsShareholder(Byte isShareholder) {
|
||||
this.isShareholder = isShareholder;
|
||||
}
|
||||
|
||||
public Byte getLevel() {
|
||||
return level;
|
||||
}
|
||||
|
||||
public void setLevel(Byte level) {
|
||||
this.level = level;
|
||||
}
|
||||
|
||||
public String getDistributeType() {
|
||||
return distributeType;
|
||||
}
|
||||
|
||||
public void setDistributeType(String distributeType) {
|
||||
this.distributeType = distributeType == null ? null : distributeType.trim();
|
||||
}
|
||||
|
||||
public Integer getSort() {
|
||||
return sort;
|
||||
}
|
||||
|
||||
public void setSort(Integer sort) {
|
||||
this.sort = sort;
|
||||
}
|
||||
|
||||
public Long getCreatedAt() {
|
||||
return createdAt;
|
||||
}
|
||||
|
||||
public void setCreatedAt(Long createdAt) {
|
||||
this.createdAt = createdAt;
|
||||
}
|
||||
|
||||
public Long getUpdatedAt() {
|
||||
return updatedAt;
|
||||
}
|
||||
|
||||
public void setUpdatedAt(Long updatedAt) {
|
||||
this.updatedAt = updatedAt;
|
||||
}
|
||||
|
||||
public String getMiniOpenId() {
|
||||
return miniOpenId;
|
||||
}
|
||||
|
||||
public void setMiniOpenId(String miniOpenId) {
|
||||
this.miniOpenId = miniOpenId == null ? null : miniOpenId.trim();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,79 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.math.BigDecimal;
|
||||
import java.util.Date;
|
||||
|
||||
public class TbShopUserFlow implements Serializable {
|
||||
private Integer id;
|
||||
|
||||
private Integer shopUserId;
|
||||
|
||||
private BigDecimal amount;
|
||||
|
||||
private BigDecimal balance;
|
||||
|
||||
private String bizCode;
|
||||
|
||||
private String bizName;
|
||||
|
||||
private Date createTime;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Integer getShopUserId() {
|
||||
return shopUserId;
|
||||
}
|
||||
|
||||
public void setShopUserId(Integer shopUserId) {
|
||||
this.shopUserId = shopUserId;
|
||||
}
|
||||
|
||||
public BigDecimal getAmount() {
|
||||
return amount;
|
||||
}
|
||||
|
||||
public void setAmount(BigDecimal amount) {
|
||||
this.amount = amount;
|
||||
}
|
||||
|
||||
public BigDecimal getBalance() {
|
||||
return balance;
|
||||
}
|
||||
|
||||
public void setBalance(BigDecimal balance) {
|
||||
this.balance = balance;
|
||||
}
|
||||
|
||||
public String getBizCode() {
|
||||
return bizCode;
|
||||
}
|
||||
|
||||
public void setBizCode(String bizCode) {
|
||||
this.bizCode = bizCode == null ? null : bizCode.trim();
|
||||
}
|
||||
|
||||
public String getBizName() {
|
||||
return bizName;
|
||||
}
|
||||
|
||||
public void setBizName(String bizName) {
|
||||
this.bizName = bizName == null ? null : bizName.trim();
|
||||
}
|
||||
|
||||
public Date getCreateTime() {
|
||||
return createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Date createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,109 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
|
||||
public class TbToken implements Serializable {
|
||||
private Integer id;
|
||||
|
||||
private Integer accountId;
|
||||
|
||||
private Integer staffId;
|
||||
|
||||
private String clientType;
|
||||
|
||||
private String token;
|
||||
|
||||
private String ip;
|
||||
|
||||
private String status;
|
||||
|
||||
private Date createTime;
|
||||
|
||||
private Date updateTime;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Integer getAccountId() {
|
||||
return accountId;
|
||||
}
|
||||
|
||||
public void setAccountId(Integer accountId) {
|
||||
this.accountId = accountId;
|
||||
}
|
||||
|
||||
public Integer getStaffId() {
|
||||
return staffId;
|
||||
}
|
||||
|
||||
public void setStaffId(Integer staffId) {
|
||||
this.staffId = staffId;
|
||||
}
|
||||
|
||||
public String getClientType() {
|
||||
return clientType;
|
||||
}
|
||||
|
||||
public void setClientType(String clientType) {
|
||||
this.clientType = clientType == null ? null : clientType.trim();
|
||||
}
|
||||
|
||||
public String getToken() {
|
||||
return token;
|
||||
}
|
||||
|
||||
public void setToken(String token) {
|
||||
this.token = token == null ? null : token.trim();
|
||||
}
|
||||
|
||||
public String getIp() {
|
||||
return ip;
|
||||
}
|
||||
|
||||
public void setIp(String ip) {
|
||||
this.ip = ip == null ? null : ip.trim();
|
||||
}
|
||||
|
||||
public String getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
public void setStatus(String status) {
|
||||
this.status = status == null ? null : status.trim();
|
||||
}
|
||||
|
||||
public Date getCreateTime() {
|
||||
return createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Date createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public Date getUpdateTime() {
|
||||
return updateTime;
|
||||
}
|
||||
|
||||
public void setUpdateTime(Date updateTime) {
|
||||
this.updateTime = updateTime;
|
||||
}
|
||||
|
||||
|
||||
public TbToken(Integer accountId, Integer staffId, String clientType, String token, String ip, String status, Date createTime) {
|
||||
this.accountId = accountId;
|
||||
this.staffId = staffId;
|
||||
this.clientType = clientType;
|
||||
this.token = token;
|
||||
this.ip = ip;
|
||||
this.status = status;
|
||||
this.createTime = createTime;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,478 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.math.BigDecimal;
|
||||
|
||||
public class TbUserInfo implements Serializable {
|
||||
private Integer id;
|
||||
|
||||
private BigDecimal amount;
|
||||
|
||||
private BigDecimal chargeAmount;
|
||||
|
||||
private BigDecimal lineOfCredit;
|
||||
|
||||
private BigDecimal consumeAmount;
|
||||
|
||||
private Integer consumeNumber;
|
||||
|
||||
private Integer totalScore;
|
||||
|
||||
private Integer lockScore;
|
||||
|
||||
private String cardNo;
|
||||
|
||||
private String cardPassword;
|
||||
|
||||
private String levelId;
|
||||
|
||||
private String headImg;
|
||||
|
||||
private String nickName;
|
||||
|
||||
private String telephone;
|
||||
|
||||
private String wxMaAppId;
|
||||
|
||||
private String birthDay;
|
||||
|
||||
private Byte sex;
|
||||
|
||||
private String miniAppOpenId;
|
||||
|
||||
private String openId;
|
||||
|
||||
private String unionId;
|
||||
|
||||
private String code;
|
||||
|
||||
private String type;
|
||||
|
||||
private Byte identify;
|
||||
|
||||
private Byte status;
|
||||
|
||||
private String parentId;
|
||||
|
||||
private String parentLevel;
|
||||
|
||||
private String parentType;
|
||||
|
||||
private String projectId;
|
||||
|
||||
private String merchantId;
|
||||
|
||||
private Byte isResource;
|
||||
|
||||
private Byte isOnline;
|
||||
|
||||
private Byte isVip;
|
||||
|
||||
private Integer vipEffectAt;
|
||||
|
||||
private String tips;
|
||||
|
||||
private String sourcePath;
|
||||
|
||||
private Byte isSalesPerson;
|
||||
|
||||
private Byte isAttentionMp;
|
||||
|
||||
private String city;
|
||||
|
||||
private String searchWord;
|
||||
|
||||
private Long lastLogInAt;
|
||||
|
||||
private Long lastLeaveAt;
|
||||
|
||||
private Long createdAt;
|
||||
|
||||
private Long updatedAt;
|
||||
|
||||
private Long bindParentAt;
|
||||
|
||||
private String grandParentId;
|
||||
|
||||
private String avatar = "";
|
||||
|
||||
private String phone="";
|
||||
|
||||
public String getPhone() {
|
||||
return phone;
|
||||
}
|
||||
|
||||
public void setPhone(String phone) {
|
||||
this.phone = phone;
|
||||
}
|
||||
|
||||
public String getAvatar() {
|
||||
return avatar;
|
||||
}
|
||||
|
||||
public void setAvatar(String avatar) {
|
||||
this.avatar = avatar;
|
||||
}
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public BigDecimal getAmount() {
|
||||
return amount;
|
||||
}
|
||||
|
||||
public void setAmount(BigDecimal amount) {
|
||||
this.amount = amount;
|
||||
}
|
||||
|
||||
public BigDecimal getChargeAmount() {
|
||||
return chargeAmount;
|
||||
}
|
||||
|
||||
public void setChargeAmount(BigDecimal chargeAmount) {
|
||||
this.chargeAmount = chargeAmount;
|
||||
}
|
||||
|
||||
public BigDecimal getLineOfCredit() {
|
||||
return lineOfCredit;
|
||||
}
|
||||
|
||||
public void setLineOfCredit(BigDecimal lineOfCredit) {
|
||||
this.lineOfCredit = lineOfCredit;
|
||||
}
|
||||
|
||||
public BigDecimal getConsumeAmount() {
|
||||
return consumeAmount;
|
||||
}
|
||||
|
||||
public void setConsumeAmount(BigDecimal consumeAmount) {
|
||||
this.consumeAmount = consumeAmount;
|
||||
}
|
||||
|
||||
public Integer getConsumeNumber() {
|
||||
return consumeNumber;
|
||||
}
|
||||
|
||||
public void setConsumeNumber(Integer consumeNumber) {
|
||||
this.consumeNumber = consumeNumber;
|
||||
}
|
||||
|
||||
public Integer getTotalScore() {
|
||||
return totalScore;
|
||||
}
|
||||
|
||||
public void setTotalScore(Integer totalScore) {
|
||||
this.totalScore = totalScore;
|
||||
}
|
||||
|
||||
public Integer getLockScore() {
|
||||
return lockScore;
|
||||
}
|
||||
|
||||
public void setLockScore(Integer lockScore) {
|
||||
this.lockScore = lockScore;
|
||||
}
|
||||
|
||||
public String getCardNo() {
|
||||
return cardNo;
|
||||
}
|
||||
|
||||
public void setCardNo(String cardNo) {
|
||||
this.cardNo = cardNo == null ? null : cardNo.trim();
|
||||
}
|
||||
|
||||
public String getCardPassword() {
|
||||
return cardPassword;
|
||||
}
|
||||
|
||||
public void setCardPassword(String cardPassword) {
|
||||
this.cardPassword = cardPassword == null ? null : cardPassword.trim();
|
||||
}
|
||||
|
||||
public String getLevelId() {
|
||||
return levelId;
|
||||
}
|
||||
|
||||
public void setLevelId(String levelId) {
|
||||
this.levelId = levelId == null ? null : levelId.trim();
|
||||
}
|
||||
|
||||
public String getHeadImg() {
|
||||
return headImg;
|
||||
}
|
||||
|
||||
public void setHeadImg(String headImg) {
|
||||
this.headImg = headImg == null ? null : headImg.trim();
|
||||
}
|
||||
|
||||
public String getNickName() {
|
||||
return nickName;
|
||||
}
|
||||
|
||||
public void setNickName(String nickName) {
|
||||
this.nickName = nickName == null ? null : nickName.trim();
|
||||
}
|
||||
|
||||
public String getTelephone() {
|
||||
return telephone;
|
||||
}
|
||||
|
||||
public void setTelephone(String telephone) {
|
||||
this.telephone = telephone == null ? null : telephone.trim();
|
||||
}
|
||||
|
||||
public String getWxMaAppId() {
|
||||
return wxMaAppId;
|
||||
}
|
||||
|
||||
public void setWxMaAppId(String wxMaAppId) {
|
||||
this.wxMaAppId = wxMaAppId == null ? null : wxMaAppId.trim();
|
||||
}
|
||||
|
||||
public String getBirthDay() {
|
||||
return birthDay;
|
||||
}
|
||||
|
||||
public void setBirthDay(String birthDay) {
|
||||
this.birthDay = birthDay == null ? null : birthDay.trim();
|
||||
}
|
||||
|
||||
public Byte getSex() {
|
||||
return sex;
|
||||
}
|
||||
|
||||
public void setSex(Byte sex) {
|
||||
this.sex = sex;
|
||||
}
|
||||
|
||||
public String getMiniAppOpenId() {
|
||||
return miniAppOpenId;
|
||||
}
|
||||
|
||||
public void setMiniAppOpenId(String miniAppOpenId) {
|
||||
this.miniAppOpenId = miniAppOpenId == null ? null : miniAppOpenId.trim();
|
||||
}
|
||||
|
||||
public String getOpenId() {
|
||||
return openId;
|
||||
}
|
||||
|
||||
public void setOpenId(String openId) {
|
||||
this.openId = openId == null ? null : openId.trim();
|
||||
}
|
||||
|
||||
public String getUnionId() {
|
||||
return unionId;
|
||||
}
|
||||
|
||||
public void setUnionId(String unionId) {
|
||||
this.unionId = unionId == null ? null : unionId.trim();
|
||||
}
|
||||
|
||||
public String getCode() {
|
||||
return code;
|
||||
}
|
||||
|
||||
public void setCode(String code) {
|
||||
this.code = code == null ? null : code.trim();
|
||||
}
|
||||
|
||||
public String getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
public void setType(String type) {
|
||||
this.type = type == null ? null : type.trim();
|
||||
}
|
||||
|
||||
public Byte getIdentify() {
|
||||
return identify;
|
||||
}
|
||||
|
||||
public void setIdentify(Byte identify) {
|
||||
this.identify = identify;
|
||||
}
|
||||
|
||||
public Byte getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
public void setStatus(Byte status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String getParentId() {
|
||||
return parentId;
|
||||
}
|
||||
|
||||
public void setParentId(String parentId) {
|
||||
this.parentId = parentId == null ? null : parentId.trim();
|
||||
}
|
||||
|
||||
public String getParentLevel() {
|
||||
return parentLevel;
|
||||
}
|
||||
|
||||
public void setParentLevel(String parentLevel) {
|
||||
this.parentLevel = parentLevel == null ? null : parentLevel.trim();
|
||||
}
|
||||
|
||||
public String getParentType() {
|
||||
return parentType;
|
||||
}
|
||||
|
||||
public void setParentType(String parentType) {
|
||||
this.parentType = parentType == null ? null : parentType.trim();
|
||||
}
|
||||
|
||||
public String getProjectId() {
|
||||
return projectId;
|
||||
}
|
||||
|
||||
public void setProjectId(String projectId) {
|
||||
this.projectId = projectId == null ? null : projectId.trim();
|
||||
}
|
||||
|
||||
public String getMerchantId() {
|
||||
return merchantId;
|
||||
}
|
||||
|
||||
public void setMerchantId(String merchantId) {
|
||||
this.merchantId = merchantId == null ? null : merchantId.trim();
|
||||
}
|
||||
|
||||
public Byte getIsResource() {
|
||||
return isResource;
|
||||
}
|
||||
|
||||
public void setIsResource(Byte isResource) {
|
||||
this.isResource = isResource;
|
||||
}
|
||||
|
||||
public Byte getIsOnline() {
|
||||
return isOnline;
|
||||
}
|
||||
|
||||
public void setIsOnline(Byte isOnline) {
|
||||
this.isOnline = isOnline;
|
||||
}
|
||||
|
||||
public Byte getIsVip() {
|
||||
return isVip;
|
||||
}
|
||||
|
||||
public void setIsVip(Byte isVip) {
|
||||
this.isVip = isVip;
|
||||
}
|
||||
|
||||
public Integer getVipEffectAt() {
|
||||
return vipEffectAt;
|
||||
}
|
||||
|
||||
public void setVipEffectAt(Integer vipEffectAt) {
|
||||
this.vipEffectAt = vipEffectAt;
|
||||
}
|
||||
|
||||
public String getTips() {
|
||||
return tips;
|
||||
}
|
||||
|
||||
public void setTips(String tips) {
|
||||
this.tips = tips == null ? null : tips.trim();
|
||||
}
|
||||
|
||||
public String getSourcePath() {
|
||||
return sourcePath;
|
||||
}
|
||||
|
||||
public void setSourcePath(String sourcePath) {
|
||||
this.sourcePath = sourcePath == null ? null : sourcePath.trim();
|
||||
}
|
||||
|
||||
public Byte getIsSalesPerson() {
|
||||
return isSalesPerson;
|
||||
}
|
||||
|
||||
public void setIsSalesPerson(Byte isSalesPerson) {
|
||||
this.isSalesPerson = isSalesPerson;
|
||||
}
|
||||
|
||||
public Byte getIsAttentionMp() {
|
||||
return isAttentionMp;
|
||||
}
|
||||
|
||||
public void setIsAttentionMp(Byte isAttentionMp) {
|
||||
this.isAttentionMp = isAttentionMp;
|
||||
}
|
||||
|
||||
public String getCity() {
|
||||
return city;
|
||||
}
|
||||
|
||||
public void setCity(String city) {
|
||||
this.city = city == null ? null : city.trim();
|
||||
}
|
||||
|
||||
public String getSearchWord() {
|
||||
return searchWord;
|
||||
}
|
||||
|
||||
public void setSearchWord(String searchWord) {
|
||||
this.searchWord = searchWord == null ? null : searchWord.trim();
|
||||
}
|
||||
|
||||
public Long getLastLogInAt() {
|
||||
return lastLogInAt;
|
||||
}
|
||||
|
||||
public void setLastLogInAt(Long lastLogInAt) {
|
||||
this.lastLogInAt = lastLogInAt;
|
||||
}
|
||||
|
||||
public Long getLastLeaveAt() {
|
||||
return lastLeaveAt;
|
||||
}
|
||||
|
||||
public void setLastLeaveAt(Long lastLeaveAt) {
|
||||
this.lastLeaveAt = lastLeaveAt;
|
||||
}
|
||||
|
||||
public Long getCreatedAt() {
|
||||
return createdAt;
|
||||
}
|
||||
|
||||
public void setCreatedAt(Long createdAt) {
|
||||
this.createdAt = createdAt;
|
||||
}
|
||||
|
||||
public Long getUpdatedAt() {
|
||||
return updatedAt;
|
||||
}
|
||||
|
||||
public void setUpdatedAt(Long updatedAt) {
|
||||
this.updatedAt = updatedAt;
|
||||
}
|
||||
|
||||
public Long getBindParentAt() {
|
||||
return bindParentAt;
|
||||
}
|
||||
|
||||
public void setBindParentAt(Long bindParentAt) {
|
||||
this.bindParentAt = bindParentAt;
|
||||
}
|
||||
|
||||
public String getGrandParentId() {
|
||||
return grandParentId;
|
||||
}
|
||||
|
||||
public void setGrandParentId(String grandParentId) {
|
||||
this.grandParentId = grandParentId == null ? null : grandParentId.trim();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,97 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class ToolAlipayConfig implements Serializable {
|
||||
private Long configId;
|
||||
|
||||
private String appId;
|
||||
|
||||
private String charset;
|
||||
|
||||
private String format;
|
||||
|
||||
private String gatewayUrl;
|
||||
|
||||
private String notifyUrl;
|
||||
|
||||
private String returnUrl;
|
||||
|
||||
private String signType;
|
||||
|
||||
private String sysServiceProviderId;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public Long getConfigId() {
|
||||
return configId;
|
||||
}
|
||||
|
||||
public void setConfigId(Long configId) {
|
||||
this.configId = configId;
|
||||
}
|
||||
|
||||
public String getAppId() {
|
||||
return appId;
|
||||
}
|
||||
|
||||
public void setAppId(String appId) {
|
||||
this.appId = appId == null ? null : appId.trim();
|
||||
}
|
||||
|
||||
public String getCharset() {
|
||||
return charset;
|
||||
}
|
||||
|
||||
public void setCharset(String charset) {
|
||||
this.charset = charset == null ? null : charset.trim();
|
||||
}
|
||||
|
||||
public String getFormat() {
|
||||
return format;
|
||||
}
|
||||
|
||||
public void setFormat(String format) {
|
||||
this.format = format == null ? null : format.trim();
|
||||
}
|
||||
|
||||
public String getGatewayUrl() {
|
||||
return gatewayUrl;
|
||||
}
|
||||
|
||||
public void setGatewayUrl(String gatewayUrl) {
|
||||
this.gatewayUrl = gatewayUrl == null ? null : gatewayUrl.trim();
|
||||
}
|
||||
|
||||
public String getNotifyUrl() {
|
||||
return notifyUrl;
|
||||
}
|
||||
|
||||
public void setNotifyUrl(String notifyUrl) {
|
||||
this.notifyUrl = notifyUrl == null ? null : notifyUrl.trim();
|
||||
}
|
||||
|
||||
public String getReturnUrl() {
|
||||
return returnUrl;
|
||||
}
|
||||
|
||||
public void setReturnUrl(String returnUrl) {
|
||||
this.returnUrl = returnUrl == null ? null : returnUrl.trim();
|
||||
}
|
||||
|
||||
public String getSignType() {
|
||||
return signType;
|
||||
}
|
||||
|
||||
public void setSignType(String signType) {
|
||||
this.signType = signType == null ? null : signType.trim();
|
||||
}
|
||||
|
||||
public String getSysServiceProviderId() {
|
||||
return sysServiceProviderId;
|
||||
}
|
||||
|
||||
public void setSysServiceProviderId(String sysServiceProviderId) {
|
||||
this.sysServiceProviderId = sysServiceProviderId == null ? null : sysServiceProviderId.trim();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,27 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class ToolAlipayConfigWithBLOBs extends ToolAlipayConfig implements Serializable {
|
||||
private String privateKey;
|
||||
|
||||
private String publicKey;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public String getPrivateKey() {
|
||||
return privateKey;
|
||||
}
|
||||
|
||||
public void setPrivateKey(String privateKey) {
|
||||
this.privateKey = privateKey == null ? null : privateKey.trim();
|
||||
}
|
||||
|
||||
public String getPublicKey() {
|
||||
return publicKey;
|
||||
}
|
||||
|
||||
public void setPublicKey(String publicKey) {
|
||||
this.publicKey = publicKey == null ? null : publicKey.trim();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,67 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class ToolEmailConfig implements Serializable {
|
||||
private Long configId;
|
||||
|
||||
private String fromUser;
|
||||
|
||||
private String host;
|
||||
|
||||
private String pass;
|
||||
|
||||
private String port;
|
||||
|
||||
private String user;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public Long getConfigId() {
|
||||
return configId;
|
||||
}
|
||||
|
||||
public void setConfigId(Long configId) {
|
||||
this.configId = configId;
|
||||
}
|
||||
|
||||
public String getFromUser() {
|
||||
return fromUser;
|
||||
}
|
||||
|
||||
public void setFromUser(String fromUser) {
|
||||
this.fromUser = fromUser == null ? null : fromUser.trim();
|
||||
}
|
||||
|
||||
public String getHost() {
|
||||
return host;
|
||||
}
|
||||
|
||||
public void setHost(String host) {
|
||||
this.host = host == null ? null : host.trim();
|
||||
}
|
||||
|
||||
public String getPass() {
|
||||
return pass;
|
||||
}
|
||||
|
||||
public void setPass(String pass) {
|
||||
this.pass = pass == null ? null : pass.trim();
|
||||
}
|
||||
|
||||
public String getPort() {
|
||||
return port;
|
||||
}
|
||||
|
||||
public void setPort(String port) {
|
||||
this.port = port == null ? null : port.trim();
|
||||
}
|
||||
|
||||
public String getUser() {
|
||||
return user;
|
||||
}
|
||||
|
||||
public void setUser(String user) {
|
||||
this.user = user == null ? null : user.trim();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,118 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
|
||||
public class ToolLocalStorage implements Serializable {
|
||||
private Long storageId;
|
||||
|
||||
private String realName;
|
||||
|
||||
private String name;
|
||||
|
||||
private String suffix;
|
||||
|
||||
private String path;
|
||||
|
||||
private String type;
|
||||
|
||||
private String size;
|
||||
|
||||
private String createBy;
|
||||
|
||||
private String updateBy;
|
||||
|
||||
private Date createTime;
|
||||
|
||||
private Date updateTime;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public Long getStorageId() {
|
||||
return storageId;
|
||||
}
|
||||
|
||||
public void setStorageId(Long storageId) {
|
||||
this.storageId = storageId;
|
||||
}
|
||||
|
||||
public String getRealName() {
|
||||
return realName;
|
||||
}
|
||||
|
||||
public void setRealName(String realName) {
|
||||
this.realName = realName == null ? null : realName.trim();
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name == null ? null : name.trim();
|
||||
}
|
||||
|
||||
public String getSuffix() {
|
||||
return suffix;
|
||||
}
|
||||
|
||||
public void setSuffix(String suffix) {
|
||||
this.suffix = suffix == null ? null : suffix.trim();
|
||||
}
|
||||
|
||||
public String getPath() {
|
||||
return path;
|
||||
}
|
||||
|
||||
public void setPath(String path) {
|
||||
this.path = path == null ? null : path.trim();
|
||||
}
|
||||
|
||||
public String getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
public void setType(String type) {
|
||||
this.type = type == null ? null : type.trim();
|
||||
}
|
||||
|
||||
public String getSize() {
|
||||
return size;
|
||||
}
|
||||
|
||||
public void setSize(String size) {
|
||||
this.size = size == null ? null : size.trim();
|
||||
}
|
||||
|
||||
public String getCreateBy() {
|
||||
return createBy;
|
||||
}
|
||||
|
||||
public void setCreateBy(String createBy) {
|
||||
this.createBy = createBy == null ? null : createBy.trim();
|
||||
}
|
||||
|
||||
public String getUpdateBy() {
|
||||
return updateBy;
|
||||
}
|
||||
|
||||
public void setUpdateBy(String updateBy) {
|
||||
this.updateBy = updateBy == null ? null : updateBy.trim();
|
||||
}
|
||||
|
||||
public Date getCreateTime() {
|
||||
return createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Date createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public Date getUpdateTime() {
|
||||
return updateTime;
|
||||
}
|
||||
|
||||
public void setUpdateTime(Date updateTime) {
|
||||
this.updateTime = updateTime;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,57 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class ToolQiniuConfig implements Serializable {
|
||||
private Long configId;
|
||||
|
||||
private String bucket;
|
||||
|
||||
private String host;
|
||||
|
||||
private String type;
|
||||
|
||||
private String zone;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public Long getConfigId() {
|
||||
return configId;
|
||||
}
|
||||
|
||||
public void setConfigId(Long configId) {
|
||||
this.configId = configId;
|
||||
}
|
||||
|
||||
public String getBucket() {
|
||||
return bucket;
|
||||
}
|
||||
|
||||
public void setBucket(String bucket) {
|
||||
this.bucket = bucket == null ? null : bucket.trim();
|
||||
}
|
||||
|
||||
public String getHost() {
|
||||
return host;
|
||||
}
|
||||
|
||||
public void setHost(String host) {
|
||||
this.host = host == null ? null : host.trim();
|
||||
}
|
||||
|
||||
public String getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
public void setType(String type) {
|
||||
this.type = type == null ? null : type.trim();
|
||||
}
|
||||
|
||||
public String getZone() {
|
||||
return zone;
|
||||
}
|
||||
|
||||
public void setZone(String zone) {
|
||||
this.zone = zone == null ? null : zone.trim();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,27 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class ToolQiniuConfigWithBLOBs extends ToolQiniuConfig implements Serializable {
|
||||
private String accessKey;
|
||||
|
||||
private String secretKey;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public String getAccessKey() {
|
||||
return accessKey;
|
||||
}
|
||||
|
||||
public void setAccessKey(String accessKey) {
|
||||
this.accessKey = accessKey == null ? null : accessKey.trim();
|
||||
}
|
||||
|
||||
public String getSecretKey() {
|
||||
return secretKey;
|
||||
}
|
||||
|
||||
public void setSecretKey(String secretKey) {
|
||||
this.secretKey = secretKey == null ? null : secretKey.trim();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,88 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
|
||||
public class ToolQiniuContent implements Serializable {
|
||||
private Long contentId;
|
||||
|
||||
private String bucket;
|
||||
|
||||
private String name;
|
||||
|
||||
private String size;
|
||||
|
||||
private String type;
|
||||
|
||||
private String url;
|
||||
|
||||
private String suffix;
|
||||
|
||||
private Date updateTime;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public Long getContentId() {
|
||||
return contentId;
|
||||
}
|
||||
|
||||
public void setContentId(Long contentId) {
|
||||
this.contentId = contentId;
|
||||
}
|
||||
|
||||
public String getBucket() {
|
||||
return bucket;
|
||||
}
|
||||
|
||||
public void setBucket(String bucket) {
|
||||
this.bucket = bucket == null ? null : bucket.trim();
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name == null ? null : name.trim();
|
||||
}
|
||||
|
||||
public String getSize() {
|
||||
return size;
|
||||
}
|
||||
|
||||
public void setSize(String size) {
|
||||
this.size = size == null ? null : size.trim();
|
||||
}
|
||||
|
||||
public String getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
public void setType(String type) {
|
||||
this.type = type == null ? null : type.trim();
|
||||
}
|
||||
|
||||
public String getUrl() {
|
||||
return url;
|
||||
}
|
||||
|
||||
public void setUrl(String url) {
|
||||
this.url = url == null ? null : url.trim();
|
||||
}
|
||||
|
||||
public String getSuffix() {
|
||||
return suffix;
|
||||
}
|
||||
|
||||
public void setSuffix(String suffix) {
|
||||
this.suffix = suffix == null ? null : suffix.trim();
|
||||
}
|
||||
|
||||
public Date getUpdateTime() {
|
||||
return updateTime;
|
||||
}
|
||||
|
||||
public void setUpdateTime(Date updateTime) {
|
||||
this.updateTime = updateTime;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,378 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.math.BigDecimal;
|
||||
|
||||
public class ViewOrder implements Serializable {
|
||||
private BigDecimal aliPaidAmount;
|
||||
|
||||
private Integer id;
|
||||
|
||||
private BigDecimal amount;
|
||||
|
||||
private BigDecimal bankPaidAmount;
|
||||
|
||||
private String billingId;
|
||||
|
||||
private BigDecimal cashPaidAmount;
|
||||
|
||||
private Long createdAt;
|
||||
|
||||
private Integer deductScore;
|
||||
|
||||
private BigDecimal depositPaidAmount;
|
||||
|
||||
private BigDecimal discountAmount;
|
||||
|
||||
private BigDecimal freightAmount;
|
||||
|
||||
private Byte isMaster;
|
||||
|
||||
private Byte isVip;
|
||||
|
||||
private String masterId;
|
||||
|
||||
private String memberId;
|
||||
|
||||
private String orderNo;
|
||||
|
||||
private String orderType;
|
||||
|
||||
private BigDecimal otherPaidAmount;
|
||||
|
||||
private Long paidTime;
|
||||
|
||||
private BigDecimal payAmount;
|
||||
|
||||
private Integer productScore;
|
||||
|
||||
private String productType;
|
||||
|
||||
private String refOrderId;
|
||||
|
||||
private Byte refundAble;
|
||||
|
||||
private BigDecimal refundAmount;
|
||||
|
||||
private String sendType;
|
||||
|
||||
private BigDecimal settlementAmount;
|
||||
|
||||
private String shopId;
|
||||
|
||||
private BigDecimal smallChange;
|
||||
|
||||
private String status;
|
||||
|
||||
private String tableId;
|
||||
|
||||
private String tableParty;
|
||||
|
||||
private String terminalSnap;
|
||||
|
||||
private String userId;
|
||||
|
||||
private BigDecimal virtualPaidAmount;
|
||||
|
||||
private BigDecimal wxPaidAmount;
|
||||
|
||||
private String cartList;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public BigDecimal getAliPaidAmount() {
|
||||
return aliPaidAmount;
|
||||
}
|
||||
|
||||
public void setAliPaidAmount(BigDecimal aliPaidAmount) {
|
||||
this.aliPaidAmount = aliPaidAmount;
|
||||
}
|
||||
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public BigDecimal getAmount() {
|
||||
return amount;
|
||||
}
|
||||
|
||||
public void setAmount(BigDecimal amount) {
|
||||
this.amount = amount;
|
||||
}
|
||||
|
||||
public BigDecimal getBankPaidAmount() {
|
||||
return bankPaidAmount;
|
||||
}
|
||||
|
||||
public void setBankPaidAmount(BigDecimal bankPaidAmount) {
|
||||
this.bankPaidAmount = bankPaidAmount;
|
||||
}
|
||||
|
||||
public String getBillingId() {
|
||||
return billingId;
|
||||
}
|
||||
|
||||
public void setBillingId(String billingId) {
|
||||
this.billingId = billingId == null ? null : billingId.trim();
|
||||
}
|
||||
|
||||
public BigDecimal getCashPaidAmount() {
|
||||
return cashPaidAmount;
|
||||
}
|
||||
|
||||
public void setCashPaidAmount(BigDecimal cashPaidAmount) {
|
||||
this.cashPaidAmount = cashPaidAmount;
|
||||
}
|
||||
|
||||
public Long getCreatedAt() {
|
||||
return createdAt;
|
||||
}
|
||||
|
||||
public void setCreatedAt(Long createdAt) {
|
||||
this.createdAt = createdAt;
|
||||
}
|
||||
|
||||
public Integer getDeductScore() {
|
||||
return deductScore;
|
||||
}
|
||||
|
||||
public void setDeductScore(Integer deductScore) {
|
||||
this.deductScore = deductScore;
|
||||
}
|
||||
|
||||
public BigDecimal getDepositPaidAmount() {
|
||||
return depositPaidAmount;
|
||||
}
|
||||
|
||||
public void setDepositPaidAmount(BigDecimal depositPaidAmount) {
|
||||
this.depositPaidAmount = depositPaidAmount;
|
||||
}
|
||||
|
||||
public BigDecimal getDiscountAmount() {
|
||||
return discountAmount;
|
||||
}
|
||||
|
||||
public void setDiscountAmount(BigDecimal discountAmount) {
|
||||
this.discountAmount = discountAmount;
|
||||
}
|
||||
|
||||
public BigDecimal getFreightAmount() {
|
||||
return freightAmount;
|
||||
}
|
||||
|
||||
public void setFreightAmount(BigDecimal freightAmount) {
|
||||
this.freightAmount = freightAmount;
|
||||
}
|
||||
|
||||
public Byte getIsMaster() {
|
||||
return isMaster;
|
||||
}
|
||||
|
||||
public void setIsMaster(Byte isMaster) {
|
||||
this.isMaster = isMaster;
|
||||
}
|
||||
|
||||
public Byte getIsVip() {
|
||||
return isVip;
|
||||
}
|
||||
|
||||
public void setIsVip(Byte isVip) {
|
||||
this.isVip = isVip;
|
||||
}
|
||||
|
||||
public String getMasterId() {
|
||||
return masterId;
|
||||
}
|
||||
|
||||
public void setMasterId(String masterId) {
|
||||
this.masterId = masterId == null ? null : masterId.trim();
|
||||
}
|
||||
|
||||
public String getMemberId() {
|
||||
return memberId;
|
||||
}
|
||||
|
||||
public void setMemberId(String memberId) {
|
||||
this.memberId = memberId == null ? null : memberId.trim();
|
||||
}
|
||||
|
||||
public String getOrderNo() {
|
||||
return orderNo;
|
||||
}
|
||||
|
||||
public void setOrderNo(String orderNo) {
|
||||
this.orderNo = orderNo == null ? null : orderNo.trim();
|
||||
}
|
||||
|
||||
public String getOrderType() {
|
||||
return orderType;
|
||||
}
|
||||
|
||||
public void setOrderType(String orderType) {
|
||||
this.orderType = orderType == null ? null : orderType.trim();
|
||||
}
|
||||
|
||||
public BigDecimal getOtherPaidAmount() {
|
||||
return otherPaidAmount;
|
||||
}
|
||||
|
||||
public void setOtherPaidAmount(BigDecimal otherPaidAmount) {
|
||||
this.otherPaidAmount = otherPaidAmount;
|
||||
}
|
||||
|
||||
public Long getPaidTime() {
|
||||
return paidTime;
|
||||
}
|
||||
|
||||
public void setPaidTime(Long paidTime) {
|
||||
this.paidTime = paidTime;
|
||||
}
|
||||
|
||||
public BigDecimal getPayAmount() {
|
||||
return payAmount;
|
||||
}
|
||||
|
||||
public void setPayAmount(BigDecimal payAmount) {
|
||||
this.payAmount = payAmount;
|
||||
}
|
||||
|
||||
public Integer getProductScore() {
|
||||
return productScore;
|
||||
}
|
||||
|
||||
public void setProductScore(Integer productScore) {
|
||||
this.productScore = productScore;
|
||||
}
|
||||
|
||||
public String getProductType() {
|
||||
return productType;
|
||||
}
|
||||
|
||||
public void setProductType(String productType) {
|
||||
this.productType = productType == null ? null : productType.trim();
|
||||
}
|
||||
|
||||
public String getRefOrderId() {
|
||||
return refOrderId;
|
||||
}
|
||||
|
||||
public void setRefOrderId(String refOrderId) {
|
||||
this.refOrderId = refOrderId == null ? null : refOrderId.trim();
|
||||
}
|
||||
|
||||
public Byte getRefundAble() {
|
||||
return refundAble;
|
||||
}
|
||||
|
||||
public void setRefundAble(Byte refundAble) {
|
||||
this.refundAble = refundAble;
|
||||
}
|
||||
|
||||
public BigDecimal getRefundAmount() {
|
||||
return refundAmount;
|
||||
}
|
||||
|
||||
public void setRefundAmount(BigDecimal refundAmount) {
|
||||
this.refundAmount = refundAmount;
|
||||
}
|
||||
|
||||
public String getSendType() {
|
||||
return sendType;
|
||||
}
|
||||
|
||||
public void setSendType(String sendType) {
|
||||
this.sendType = sendType == null ? null : sendType.trim();
|
||||
}
|
||||
|
||||
public BigDecimal getSettlementAmount() {
|
||||
return settlementAmount;
|
||||
}
|
||||
|
||||
public void setSettlementAmount(BigDecimal settlementAmount) {
|
||||
this.settlementAmount = settlementAmount;
|
||||
}
|
||||
|
||||
public String getShopId() {
|
||||
return shopId;
|
||||
}
|
||||
|
||||
public void setShopId(String shopId) {
|
||||
this.shopId = shopId == null ? null : shopId.trim();
|
||||
}
|
||||
|
||||
public BigDecimal getSmallChange() {
|
||||
return smallChange;
|
||||
}
|
||||
|
||||
public void setSmallChange(BigDecimal smallChange) {
|
||||
this.smallChange = smallChange;
|
||||
}
|
||||
|
||||
public String getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
public void setStatus(String status) {
|
||||
this.status = status == null ? null : status.trim();
|
||||
}
|
||||
|
||||
public String getTableId() {
|
||||
return tableId;
|
||||
}
|
||||
|
||||
public void setTableId(String tableId) {
|
||||
this.tableId = tableId == null ? null : tableId.trim();
|
||||
}
|
||||
|
||||
public String getTableParty() {
|
||||
return tableParty;
|
||||
}
|
||||
|
||||
public void setTableParty(String tableParty) {
|
||||
this.tableParty = tableParty == null ? null : tableParty.trim();
|
||||
}
|
||||
|
||||
public String getTerminalSnap() {
|
||||
return terminalSnap;
|
||||
}
|
||||
|
||||
public void setTerminalSnap(String terminalSnap) {
|
||||
this.terminalSnap = terminalSnap == null ? null : terminalSnap.trim();
|
||||
}
|
||||
|
||||
public String getUserId() {
|
||||
return userId;
|
||||
}
|
||||
|
||||
public void setUserId(String userId) {
|
||||
this.userId = userId == null ? null : userId.trim();
|
||||
}
|
||||
|
||||
public BigDecimal getVirtualPaidAmount() {
|
||||
return virtualPaidAmount;
|
||||
}
|
||||
|
||||
public void setVirtualPaidAmount(BigDecimal virtualPaidAmount) {
|
||||
this.virtualPaidAmount = virtualPaidAmount;
|
||||
}
|
||||
|
||||
public BigDecimal getWxPaidAmount() {
|
||||
return wxPaidAmount;
|
||||
}
|
||||
|
||||
public void setWxPaidAmount(BigDecimal wxPaidAmount) {
|
||||
this.wxPaidAmount = wxPaidAmount;
|
||||
}
|
||||
|
||||
public String getCartList() {
|
||||
return cartList;
|
||||
}
|
||||
|
||||
public void setCartList(String cartList) {
|
||||
this.cartList = cartList == null ? null : cartList.trim();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,50 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity.dto;
|
||||
|
||||
import javax.validation.constraints.NotBlank;
|
||||
|
||||
/**
|
||||
* @author lyf
|
||||
*/
|
||||
public class AuthUserDto {
|
||||
@NotBlank
|
||||
private String username;
|
||||
|
||||
@NotBlank
|
||||
private String password;
|
||||
|
||||
private String code;
|
||||
|
||||
private String uuid = "";
|
||||
|
||||
public String getUsername() {
|
||||
return username;
|
||||
}
|
||||
|
||||
public void setUsername(String username) {
|
||||
this.username = username;
|
||||
}
|
||||
|
||||
public String getPassword() {
|
||||
return password;
|
||||
}
|
||||
|
||||
public void setPassword(String password) {
|
||||
this.password = password;
|
||||
}
|
||||
|
||||
public String getCode() {
|
||||
return code;
|
||||
}
|
||||
|
||||
public void setCode(String code) {
|
||||
this.code = code;
|
||||
}
|
||||
|
||||
public String getUuid() {
|
||||
return uuid;
|
||||
}
|
||||
|
||||
public void setUuid(String uuid) {
|
||||
this.uuid = uuid;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity.dto;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
public class AuthorityDto {
|
||||
private String authority;
|
||||
|
||||
public String getAuthority() {
|
||||
return authority;
|
||||
}
|
||||
|
||||
public void setAuthority(String authority) {
|
||||
this.authority = authority;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,88 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity.dto;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* @author lyf
|
||||
*/
|
||||
@AllArgsConstructor
|
||||
@NoArgsConstructor
|
||||
public class OnlineUserDto implements Serializable {
|
||||
private static final long serialVersionUID = 1L;;
|
||||
|
||||
private String token;
|
||||
/**
|
||||
* 登录时间
|
||||
*/
|
||||
private Date loginTime;
|
||||
|
||||
/**
|
||||
* 登录名
|
||||
*/
|
||||
private String account;
|
||||
|
||||
/**
|
||||
* 昵称
|
||||
*/
|
||||
private String name;
|
||||
/**
|
||||
* shopId
|
||||
*/
|
||||
private Integer shopId;
|
||||
/**
|
||||
* 状态
|
||||
*/
|
||||
private Integer status;
|
||||
|
||||
public Integer getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
public void setStatus(Integer status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String getToken() {
|
||||
return token;
|
||||
}
|
||||
|
||||
public void setToken(String token) {
|
||||
this.token = token;
|
||||
}
|
||||
|
||||
public Date getLoginTime() {
|
||||
return loginTime;
|
||||
}
|
||||
|
||||
public void setLoginTime(Date loginTime) {
|
||||
this.loginTime = loginTime;
|
||||
}
|
||||
|
||||
public String getAccount() {
|
||||
return account;
|
||||
}
|
||||
|
||||
public void setAccount(String account) {
|
||||
this.account = account;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public Integer getShopId() {
|
||||
return shopId;
|
||||
}
|
||||
|
||||
public void setShopId(Integer shopId) {
|
||||
this.shopId = shopId;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,34 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity.dto;
|
||||
|
||||
/**
|
||||
* @author lyf
|
||||
*/
|
||||
public class OrderDto {
|
||||
private Integer tableId;
|
||||
private Integer shopId;
|
||||
private Integer userId;
|
||||
|
||||
public Integer getTableId() {
|
||||
return tableId;
|
||||
}
|
||||
|
||||
public void setTableId(Integer tableId) {
|
||||
this.tableId = tableId;
|
||||
}
|
||||
|
||||
public Integer getShopId() {
|
||||
return shopId;
|
||||
}
|
||||
|
||||
public void setShopId(Integer shopId) {
|
||||
this.shopId = shopId;
|
||||
}
|
||||
|
||||
public Integer getUserId() {
|
||||
return userId;
|
||||
}
|
||||
|
||||
public void setUserId(Integer userId) {
|
||||
this.userId = userId;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,123 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity.dto;
|
||||
|
||||
import javax.validation.constraints.NotEmpty;
|
||||
import java.math.BigDecimal;
|
||||
|
||||
/**
|
||||
* @author 购物车中
|
||||
*/
|
||||
public class ProductCartDto {
|
||||
@NotEmpty
|
||||
private String productId;
|
||||
|
||||
private String skuInfo;
|
||||
//数目
|
||||
@NotEmpty
|
||||
private Float number;
|
||||
//图片
|
||||
private String coverImg;
|
||||
//商品名
|
||||
@NotEmpty
|
||||
private String name;
|
||||
//分类Id
|
||||
private String categoryId;
|
||||
//店铺id
|
||||
@NotEmpty
|
||||
private String shopId;
|
||||
//打包费
|
||||
private BigDecimal packFee;
|
||||
|
||||
|
||||
private Integer userId;
|
||||
|
||||
private Integer tableId;
|
||||
private String type;
|
||||
|
||||
public String getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
public void setType(String type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public Integer getUserId() {
|
||||
return userId;
|
||||
}
|
||||
|
||||
public void setUserId(Integer userId) {
|
||||
this.userId = userId;
|
||||
}
|
||||
|
||||
public Integer getTableId() {
|
||||
return tableId;
|
||||
}
|
||||
|
||||
public void setTableId(Integer tableId) {
|
||||
this.tableId = tableId;
|
||||
}
|
||||
|
||||
public String getProductId() {
|
||||
return productId;
|
||||
}
|
||||
|
||||
public void setProductId(String productId) {
|
||||
this.productId = productId;
|
||||
}
|
||||
|
||||
public String getSkuInfo() {
|
||||
return skuInfo;
|
||||
}
|
||||
|
||||
public void setSkuInfo(String skuInfo) {
|
||||
this.skuInfo = skuInfo;
|
||||
}
|
||||
|
||||
public Float getNumber() {
|
||||
return number;
|
||||
}
|
||||
|
||||
public void setNumber(Float number) {
|
||||
this.number = number;
|
||||
}
|
||||
|
||||
public String getCoverImg() {
|
||||
return coverImg;
|
||||
}
|
||||
|
||||
public void setCoverImg(String coverImg) {
|
||||
this.coverImg = coverImg;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getCategoryId() {
|
||||
return categoryId;
|
||||
}
|
||||
|
||||
public void setCategoryId(String categoryId) {
|
||||
this.categoryId = categoryId;
|
||||
}
|
||||
|
||||
public String getShopId() {
|
||||
return shopId;
|
||||
}
|
||||
|
||||
public void setShopId(String shopId) {
|
||||
this.shopId = shopId;
|
||||
}
|
||||
|
||||
public BigDecimal getPackFee() {
|
||||
return packFee;
|
||||
}
|
||||
|
||||
public void setPackFee(BigDecimal packFee) {
|
||||
this.packFee = packFee;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,111 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity.dto;
|
||||
|
||||
/**
|
||||
* @author lyf
|
||||
*/
|
||||
public class SecurityProperties {
|
||||
|
||||
/**
|
||||
* Request Headers : Authorization
|
||||
*/
|
||||
private String header;
|
||||
|
||||
/**
|
||||
* 令牌前缀,最后留个空格 Bearer
|
||||
*/
|
||||
private String tokenStartWith;
|
||||
|
||||
/**
|
||||
* 必须使用最少88位的Base64对该令牌进行编码
|
||||
*/
|
||||
private String base64Secret;
|
||||
|
||||
/**
|
||||
* 令牌过期时间 此处单位/毫秒
|
||||
*/
|
||||
private Long tokenValidityInSeconds;
|
||||
|
||||
/**
|
||||
* 在线用户 key,根据 key 查询 redis 中在线用户的数据
|
||||
*/
|
||||
private String onlineKey;
|
||||
|
||||
/**
|
||||
* 验证码 key
|
||||
*/
|
||||
private String codeKey;
|
||||
|
||||
/**
|
||||
* token 续期检查
|
||||
*/
|
||||
private Long detect;
|
||||
|
||||
/**
|
||||
* 续期时间
|
||||
*/
|
||||
private Long renew;
|
||||
|
||||
public String getTokenStartWith() {
|
||||
return tokenStartWith + " ";
|
||||
}
|
||||
|
||||
public String getHeader() {
|
||||
return header;
|
||||
}
|
||||
|
||||
public void setHeader(String header) {
|
||||
this.header = header;
|
||||
}
|
||||
|
||||
public void setTokenStartWith(String tokenStartWith) {
|
||||
this.tokenStartWith = tokenStartWith;
|
||||
}
|
||||
|
||||
public String getBase64Secret() {
|
||||
return base64Secret;
|
||||
}
|
||||
|
||||
public void setBase64Secret(String base64Secret) {
|
||||
this.base64Secret = base64Secret;
|
||||
}
|
||||
|
||||
public Long getTokenValidityInSeconds() {
|
||||
return tokenValidityInSeconds;
|
||||
}
|
||||
|
||||
public void setTokenValidityInSeconds(Long tokenValidityInSeconds) {
|
||||
this.tokenValidityInSeconds = tokenValidityInSeconds;
|
||||
}
|
||||
|
||||
public String getOnlineKey() {
|
||||
return onlineKey;
|
||||
}
|
||||
|
||||
public void setOnlineKey(String onlineKey) {
|
||||
this.onlineKey = onlineKey;
|
||||
}
|
||||
|
||||
public String getCodeKey() {
|
||||
return codeKey;
|
||||
}
|
||||
|
||||
public void setCodeKey(String codeKey) {
|
||||
this.codeKey = codeKey;
|
||||
}
|
||||
|
||||
public Long getDetect() {
|
||||
return detect;
|
||||
}
|
||||
|
||||
public void setDetect(Long detect) {
|
||||
this.detect = detect;
|
||||
}
|
||||
|
||||
public Long getRenew() {
|
||||
return renew;
|
||||
}
|
||||
|
||||
public void setRenew(Long renew) {
|
||||
this.renew = renew;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,26 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity.dto;
|
||||
|
||||
/**
|
||||
* @author lyf
|
||||
*/
|
||||
public class UserLoginDto {
|
||||
private String password;
|
||||
|
||||
private Boolean isAdmin;
|
||||
|
||||
public String getPassword() {
|
||||
return password;
|
||||
}
|
||||
|
||||
public void setPassword(String password) {
|
||||
this.password = password;
|
||||
}
|
||||
|
||||
public Boolean getAdmin() {
|
||||
return isAdmin;
|
||||
}
|
||||
|
||||
public void setAdmin(Boolean admin) {
|
||||
isAdmin = admin;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,78 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity.vo;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
|
||||
/**
|
||||
* @author lyf
|
||||
*/
|
||||
public class CashierCarVo {
|
||||
private BigDecimal salePrice;
|
||||
|
||||
private BigDecimal number;
|
||||
|
||||
private String productId;
|
||||
|
||||
private Integer id;
|
||||
|
||||
private String name;
|
||||
|
||||
private String skuId;
|
||||
|
||||
private String coverImg;
|
||||
|
||||
public String getCoverImg() {
|
||||
return coverImg;
|
||||
}
|
||||
|
||||
public void setCoverImg(String coverImg) {
|
||||
this.coverImg = coverImg;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getSkuId() {
|
||||
return skuId;
|
||||
}
|
||||
|
||||
public void setSkuId(String skuId) {
|
||||
this.skuId = skuId;
|
||||
}
|
||||
|
||||
public BigDecimal getSalePrice() {
|
||||
return salePrice;
|
||||
}
|
||||
|
||||
public void setSalePrice(BigDecimal salePrice) {
|
||||
this.salePrice = salePrice;
|
||||
}
|
||||
|
||||
public BigDecimal getNumber() {
|
||||
return number;
|
||||
}
|
||||
|
||||
public void setNumber(BigDecimal number) {
|
||||
this.number = number;
|
||||
}
|
||||
|
||||
public String getProductId() {
|
||||
return productId;
|
||||
}
|
||||
|
||||
public void setProductId(String productId) {
|
||||
this.productId = productId;
|
||||
}
|
||||
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,36 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity.vo;
|
||||
|
||||
import com.chaozhanggui.system.cashierservice.entity.TbCashierCart;
|
||||
import com.chaozhanggui.system.cashierservice.entity.TbOrderDetail;
|
||||
import lombok.Data;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @author lyf
|
||||
*/
|
||||
@Data
|
||||
public class OrderVo {
|
||||
private String name;
|
||||
|
||||
private String status;
|
||||
|
||||
private String tableName;
|
||||
|
||||
private List<TbOrderDetail> details;
|
||||
|
||||
private String cartListString;
|
||||
private String orderNo;
|
||||
|
||||
private Long time;
|
||||
|
||||
private BigDecimal payAmount;
|
||||
private String orderType;
|
||||
|
||||
private Integer orderId;
|
||||
private String sendType;
|
||||
|
||||
private BigDecimal totalNumber;
|
||||
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity.vo;
|
||||
|
||||
/**
|
||||
* @author 12847
|
||||
*/
|
||||
public class cartListVo {
|
||||
|
||||
private String name;
|
||||
|
||||
private Float number;
|
||||
|
||||
private String coverImg;
|
||||
}
|
||||
Reference in New Issue
Block a user