rwadurian/backend/services/referral-service/src/application/commands/update-team-statistics.comm...

9 lines
303 B
TypeScript
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.

export class UpdateTeamStatisticsCommand {
constructor(
public readonly accountSequence: string, // 格式: D + YYMMDD + 5位序号跨服务关联标识
public readonly plantingCount: number,
public readonly provinceCode: string,
public readonly cityCode: string,
) {}
}