|
|
|
@ -28,6 +28,7 @@ import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
|
|
import javax.validation.Valid;
|
|
|
|
|
import javax.validation.constraints.NotBlank;
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
@ -175,4 +176,17 @@ public class BussinessTypeController {
|
|
|
|
|
return ResultVOUtils.success(bussinessTypeEntity.getLocalAction());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 根据单据类型编码,查询往来信息类型
|
|
|
|
|
*
|
|
|
|
|
* @param action 单据类型编码
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
@AuthRuleAnnotation("")
|
|
|
|
|
@GetMapping("/udims/basic/busType/getCorpType")
|
|
|
|
|
public BaseResponse getCorpType(@NotBlank(message = "参数不能为空") String action) {
|
|
|
|
|
Integer corpType = bussinessTypeService.getCorpType(action);
|
|
|
|
|
return ResultVOUtils.success(corpType);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|