You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
			
				
					
					
						
							26 lines
						
					
					
						
							697 B
						
					
					
				
			
		
		
	
	
							26 lines
						
					
					
						
							697 B
						
					
					
				package com.ynxbd.common.action;
 | 
						|
 | 
						|
import com.ynxbd.common.action.base.BaseAction;
 | 
						|
import com.ynxbd.common.helper.http.OkHttpHelper;
 | 
						|
import com.ynxbd.common.helper.xbd.XBDHelper;
 | 
						|
import com.ynxbd.common.result.Result;
 | 
						|
import lombok.extern.slf4j.Slf4j;
 | 
						|
import org.apache.struts2.convention.annotation.Action;
 | 
						|
import org.apache.struts2.convention.annotation.Namespace;
 | 
						|
 | 
						|
/**
 | 
						|
 * @author 李进才
 | 
						|
 * @ClassName XBDAction
 | 
						|
 * @Description description
 | 
						|
 * @date 2023/3/30 16:50
 | 
						|
 */
 | 
						|
 | 
						|
@Slf4j
 | 
						|
@Namespace("/xbd")
 | 
						|
public class XBDAction extends BaseAction {
 | 
						|
 | 
						|
    @Action("cloudFilm")
 | 
						|
    public Result cloudFilm (String info){
 | 
						|
        return Result.success(XBDHelper.outTeamDao.getCloudFilmPath(info));
 | 
						|
    }
 | 
						|
}
 | 
						|
 |