mirror of
https://github.com/weizhiqiang1995/erp-pro.git
synced 2025-01-08 16:27:35 +08:00
CRM合同管理托管到表单布局
This commit is contained in:
parent
77fd786501
commit
6f361c2dca
2 changed files with 16 additions and 1 deletions
|
@ -72,6 +72,20 @@ public class ContactsController {
|
|||
contactsService.deleteById(inputObject, outputObject);
|
||||
}
|
||||
|
||||
/**
|
||||
* 根据id获取联系人信息
|
||||
*
|
||||
* @param inputObject 入参以及用户信息等获取对象
|
||||
* @param outputObject 出参以及提示信息的返回值对象
|
||||
*/
|
||||
@ApiOperation(id = "queryContactsById", value = "根据id获取联系人信息", method = "GET", allUse = "2")
|
||||
@ApiImplicitParams(value = {
|
||||
@ApiImplicitParam(id = "id", name = "id", value = "主键id", required = "required")})
|
||||
@RequestMapping("/post/ContactsController/queryContactsById")
|
||||
public void queryContactsById(InputObject inputObject, OutputObject outputObject) {
|
||||
contactsService.selectById(inputObject, outputObject);
|
||||
}
|
||||
|
||||
/**
|
||||
* 根据业务数据id获取联系人列表
|
||||
*
|
||||
|
|
|
@ -27,7 +27,8 @@ public enum DsFormShowType implements SkyeyeEnumClass {
|
|||
PICTURE(4, "图片展示", true, false),
|
||||
TABLE(5, "表格展示", true, false),
|
||||
VOUCHER(6, "凭证展示", true, false),
|
||||
SCRIPT(7, "脚本展示", true, false);
|
||||
SCRIPT(7, "脚本展示", true, false),
|
||||
ID_TURN_MATION(8, "Id转Mation取值转换", true, false);
|
||||
|
||||
private Integer key;
|
||||
|
||||
|
|
Loading…
Reference in a new issue