GatheringMonthlyParams

@Serializable
data class GatheringMonthlyParams(val year: Int, val month: Int, val lat: Double? = null, val lng: Double? = null)

聚会月历参数 用于聚会月历接口的请求参数

Parameters

year

年份

month

月份

lat

纬度(可选,用于计算距离)

lng

经度(可选,用于计算距离)

Constructors

Link copied to clipboard
constructor(year: Int, month: Int, lat: Double? = null, lng: Double? = null)

Properties

Link copied to clipboard
val lat: Double? = null

纬度(用于计算距离)

Link copied to clipboard
val lng: Double? = null

经度(用于计算距离)

Link copied to clipboard
val month: Int

月份

Link copied to clipboard
val year: Int

年份