GET api/CustomForm/GetCustomFromList?moduleType={moduleType}

根据模块获取表单列表

Request Information

URI Parameters

NameDescriptionTypeAdditional information
moduleType

ModuleType

Required

Body Parameters

None.

Response Information

Resource Description

根据模块获取表单列表

Collection of CustomFromListDto
NameDescriptionTypeAdditional information
Id

主键id

integer

None.

FormName

表单名

string

None.

CreateTime

创建时间

date

None.

Module

模块

ModuleType

None.

IsDefault

是否为默认表单

boolean

None.

Response Formats

application/json

Sample:

Sample not available.

text/json

Sample:

Sample not available.

application/xml, text/xml

Sample:
<ArrayOfCustomFromListDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Mh.Common.Service.Dto.CustomForm">
  <CustomFromListDto>
    <CreateTime>2024-04-18T10:31:33.3501928+08:00</CreateTime>
    <FormName>sample string 2</FormName>
    <Id>1</Id>
    <IsDefault>true</IsDefault>
    <Module>None</Module>
  </CustomFromListDto>
  <CustomFromListDto>
    <CreateTime>2024-04-18T10:31:33.3501928+08:00</CreateTime>
    <FormName>sample string 2</FormName>
    <Id>1</Id>
    <IsDefault>true</IsDefault>
    <Module>None</Module>
  </CustomFromListDto>
</ArrayOfCustomFromListDto>