fix:apiFox导入问题
This commit is contained in:
@@ -8,7 +8,6 @@ import lombok.Data;
|
||||
import java.util.Date;
|
||||
|
||||
@Data
|
||||
@ApiModel("提交加盟合同签约请求体")
|
||||
public class AddSignFranchiseRequest {
|
||||
|
||||
@ApiModelProperty("主键,更新时才存在")
|
||||
|
||||
@@ -8,7 +8,6 @@ import lombok.Data;
|
||||
import java.util.Date;
|
||||
|
||||
@Data
|
||||
@ApiModel("加盟费/保证金实体")
|
||||
public class FranchiseFeeRequest {
|
||||
|
||||
private Long id;
|
||||
|
||||
@@ -45,7 +45,7 @@ public class CheckListResponse {
|
||||
@ApiModelProperty("招商经理id")
|
||||
private String investmentId;
|
||||
|
||||
@ApiModelProperty("招商经理id")
|
||||
@ApiModelProperty("招商经理姓名")
|
||||
private String investmentName;
|
||||
|
||||
@ApiModelProperty("稽核人")
|
||||
|
||||
@@ -153,7 +153,7 @@ public class AuditStatusServiceImpl implements AuditStatusService {
|
||||
checkListResponses.forEach(x -> {
|
||||
x.setIntervieweeName(intervieweeIdMap.get(x.getIntervieweeId()));
|
||||
x.setWantRegionName(wantShopAreaMap.get(x.getWantRegion()));
|
||||
x.setInvestmentName(investmentIdMap.get(x.getIntervieweeId()));
|
||||
x.setInvestmentName(investmentIdMap.get(x.getInvestmentId()));
|
||||
});
|
||||
|
||||
PageInfo<CheckListResponse> pageInfo = new PageInfo<>(checkListResponses);
|
||||
|
||||
@@ -11,7 +11,7 @@ import org.springframework.web.bind.annotation.*;
|
||||
|
||||
import javax.annotation.Resource;
|
||||
|
||||
@Api(tags = "pc加盟合同签约")
|
||||
@Api(tags = "Mini加盟合同签约")
|
||||
@RestController
|
||||
@RequestMapping("/mini/signFranchise")
|
||||
public class MiniSignFranchiseController {
|
||||
|
||||
Reference in New Issue
Block a user