feat:系统建店审核

This commit is contained in:
guohb
2024-04-23 18:11:46 +08:00
parent aa3b67a091
commit ea8fc0db0c
3 changed files with 71 additions and 7 deletions

View File

@@ -19,7 +19,7 @@ public class ShopAuditInfoDO {
* 0-视觉验收 1-培训登记审批 2-开业运营方案 3-证照审批
*/
@Column(name = "audit_type")
private Byte auditType;
private Integer auditType;
/**
* 提交人ID
@@ -37,7 +37,7 @@ public class ShopAuditInfoDO {
* 结果类型 0通过,1拒绝
*/
@Column(name = "result_type")
private Byte resultType;
private Integer resultType;
/**
* 通过原因
@@ -111,7 +111,7 @@ public class ShopAuditInfoDO {
*
* @return audit_type - 0-视觉验收 1-培训登记审批 2-开业运营方案 3-证照审批
*/
public Byte getAuditType() {
public Integer getAuditType() {
return auditType;
}
@@ -120,7 +120,7 @@ public class ShopAuditInfoDO {
*
* @param auditType 0-视觉验收 1-培训登记审批 2-开业运营方案 3-证照审批
*/
public void setAuditType(Byte auditType) {
public void setAuditType(Integer auditType) {
this.auditType = auditType;
}
@@ -165,7 +165,7 @@ public class ShopAuditInfoDO {
*
* @return result_type - 结果类型 0通过,1拒绝
*/
public Byte getResultType() {
public Integer getResultType() {
return resultType;
}
@@ -174,7 +174,7 @@ public class ShopAuditInfoDO {
*
* @param resultType 结果类型 0通过,1拒绝
*/
public void setResultType(Byte resultType) {
public void setResultType(Integer resultType) {
this.resultType = resultType;
}