19 lines
437 B
TypeScript
19 lines
437 B
TypeScript
export class ApplyAuthCityCompanyCommand {
|
|
constructor(
|
|
public readonly userId: string,
|
|
public readonly accountSequence: string,
|
|
public readonly cityCode: string,
|
|
public readonly cityName: string,
|
|
) {}
|
|
}
|
|
|
|
export interface ApplyAuthCityCompanyResult {
|
|
authorizationId: string
|
|
status: string
|
|
benefitActive: boolean
|
|
displayTitle: string
|
|
message: string
|
|
currentTreeCount: number
|
|
requiredTreeCount: number
|
|
}
|