using MediatR; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FlexJobApi.Core { /// /// 灵工解约 /// [Resource([EnumResourceController.UserServerEnterpriseEmployee])] public class StopElectronSignCommand : IRequest { public StopElectronSignCommand() { Ids = []; } /// /// 灵工Id /// public List Ids { get; set; } } }