using System.Data; using Znyc.Admin.Commons.IServices; using Znyc.Admin.Security.Dtos; using Znyc.Admin.Security.Entitys; namespace Znyc.Admin.Security.IServices { public interface IUploadFileService : IService { /// /// 根据应用Id和应用标识批量更新数据 /// /// 应用Id /// 更新前旧的应用Id /// 应用标识 /// /// bool UpdateByBeLongAppId(string beLongAppId, string oldBeLongAppId, string belongApp = null, IDbTransaction trans = null); } }