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 GetEnterpriseEmployeeElectronSignQuery : IRequest { } /// /// 查询个人用户签约详情-结果 /// public class GetEnterpriseEmployeeElectronSignQueryResult { } }