/// <summary> /// 根据主键查找对象 /// </summary> /// <param name="fileTypeId"></param> /// <returns></returns> public static FileType GetFileTypeById(int fileTypeId) { return(FileTypeService.GetFileTypeById(fileTypeId)); }
public ActionResult <string> GetFileContentById(int id) { return(genericResponseFactory.CreateGenericControllerResponse(fileTypeService.GetFileTypeById(id))); }