using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FlexJobApi.Core.Models.ElectronSignServer.ContractTemplates { /// /// 删除合同模板 /// [Resource([EnumResourceController.ElectronSignServerElectronSign], Method = EnumResourceMethod.Post, Route = "/api/ElectronSign/DeleteContractTemplate")] public class DeleteContractTemplateInput { public DeleteContractTemplateInput() { Ids = []; } /// /// Id /// public List Ids { get; set; } } }