Files
suixinkan_ios_new/suixinkan/Features/ScenicSettlement/Models/ScenicSettlementModels.swift
汉秋 c39c3d3c75 新增订单长尾流程,并迁移排队、消息、结算与审核模块
将定金订单、历史拍摄与多行程上传接入 Orders,并以真实页面替换首页排队管理、消息中心、景区结算与提现审核占位入口。

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-25 13:39:02 +08:00

29 lines
646 B
Swift
Raw 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"
}
}