Files
汉秋 d99a5b1bf8 Advance UIKit rewrite with AMap integration and core UI modules.
Integrate高德 SDK with simulator-safe build flags, add map views for operating area and punch points, refactor main tabs and key feature screens to UIKit with Diffable lists, and document Swift concurrency defaults in AGENTS.md.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-26 15:16:12 +08:00

30 lines
694 B
Swift
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// ScenicSettlementModels.swift
// suixinkan
//
// Created by Codex on 2026/6/25.
//
import Foundation
///
struct ScenicSettlementOption: Equatable, Identifiable {
let id: Int
let name: String
var selected: Bool
}
///
struct ScenicSettlementSubmitRequest: Encodable, Equatable {
let scenicId: Int
let applyAmount: String
let applyRemark: String
///
enum CodingKeys: String, CodingKey {
case scenicId = "scenic_id"
case applyAmount = "apply_amount"
case applyRemark = "apply_remark"
}
}