using YY.Admin.Core.Entity; namespace YY.Admin.Core.Services; /// 胶料快检实验标准(MES 只读同步) public interface IRubberQuickTestStdService { Task PageAsync( int pageNo, int pageSize, string? stdName = null, string? rubberMaterialName = null, string? enableStatus = null, CancellationToken ct = default); Task GetByIdAsync(string id, CancellationToken ct = default); Task SyncFromRemoteAsync(CancellationToken ct = default); } public record RubberQuickTestStdPageResult( List Records, long Total, int PageNo, int PageSize);