<!-- ephemeral -->

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

### Standard List Page Example (Reference)
```go
import (
	"github.com/teaql/teaql-golang/core"
	"github.com/teaql/teaql-golang/runtime"
	. "crm-erp-service-core-workspace-go/lib"
	"crm-erp-service-core-workspace-go/lib/platform"
)

func ListPageExample(ctx *runtime.UserContext, offset int, size int) (*core.SmartList[*platform.Platform], error) {
	listResult, err := Q.PlatformsMinimal().
		SetOffset(offset).
		SetSize(size).
		Comment("what: Retrieve paginated list").
		Purpose("why: Paginate entities").
		ExecuteForList(ctx)

	if err != nil {
		return nil, err
	}

	return listResult, nil
}
```

### Your Task
Please implement the real list-page logic for `System Platform` based on my specific business needs.