Please help me complete the creation (Create) service business code for the `System Platform` object.

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

### Standard Creation Example (Reference)
Please carefully observe the initialization of the object, the `update_xxx()` property setting methods, and the strictly required `.audit_as()` and `.save()` cascade in the example code.

```rust
use teaql_core::Entity;
use crm_erp_service_core::{Q, System Platform, TeaqlRuntime, AuditedSave};

pub async fn create_example(
    ctx: &impl TeaqlRuntime,
) -> Result<System Platform, Box<dyn std::error::Error>> {
    // 1. Initialize the new entity
    let mut new_entity = Q::platforms()
        .purpose("why: Create a new entity instance")
        .new_entity(ctx);

    // 2. Set property values (replace dummy data with actual inputs)
    // new_entity.update_name(/* input data */);
    // new_entity.update_create_time(/* input data */);
    // new_entity.update_last_update_time(/* input data */);


    // 3. CRITICAL: Security audit constraints must be attached before calling save()!
    new_entity.clone()
        .audit_as("Why this create operation was executed (audit record)")
        .save(ctx).await?;

    Ok(new_entity)
}
```

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