Please help me complete the paginated list (List Page) service business code for the `System Platform` object.

To ensure absolute correctness of the API, please refer to and strictly imitate the following **real list page code example for `System Platform`**.

### Standard Paginated List Example (Reference)
Please carefully observe the `executeForPage()` method with offset/limit parameters, the `WithMinimalFields()` query start, and the strictly required `.purpose()` and `.comment()` cascade:

```java
import io.teaql.core.Context;
import io.teaql.core.data.SmartList;
import io.teaql.core.data.JsonNode;
import com.yourcompany.domain.Q;
import com.yourcompany.domain.Platform;

public class PlatformListService {

    public SmartList<Platform\> listPageExample(
        Context ctx, 
        long offset, 
        long limit, 
        JsonNode uiFiltersJson
    ) {
        // [BEST PRACTICE]: Always start with WithMinimalFields() to avoid over-fetching
        var page = Q.platformsWithMinimalFields()
            .selectName()
            .selectCreateTime()
            .selectLastUpdateTime()


            .filterWithJson(uiFiltersJson) // Dynamic UI Search Support

            // --- Drill-Down Options: Fetch nested objects and tailor fields (uncomment as needed) ---
            // .selectMerchantListWith(
            //     Q.merchantsWithMinimalFields()
            //         .selectName()
            //         .selectTaxNumber()
            //         .selectAddress()
            //         .selectExternalId()
            //         .selectPlatform()
            //         .selectCreateTime()
            //         .selectUpdateTime()
            // )
            // -----------------------------------------------------------------------------------------------

            // --- Facet Options: Aggregate referenced objects directly (uncomment as needed) ---
            // -----------------------------------------------------------------------------------------------

            // [CRITICAL]: All execute methods must cascade these two methods!
            .comment("what: Query paginated list of System Platform")
            .purpose("why: Need to display a paginated list on the frontend")
            .executeForPage(ctx, offset, limit);

        return page;
    }
}
```

### Your Task
Please completely imitate the framework, imports, and syntax features of the above code to implement the real paginated list logic for `System Platform` based on my specific business needs. Please output the Java source code directly.
