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 InviteElectronSignCommand : IRequest { public InviteElectronSignCommand() { Ids = []; } /// /// 灵工Id /// public List Ids { get; set; } /// /// 合同模板Id /// public Guid ContractTemplateId { get; set; } } }