You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
607 B
22 lines
607 B
3 days ago
|
using medical.transfomer.business;
|
||
|
using medical.transfomer.entity;
|
||
|
using Microsoft.AspNetCore.Mvc;
|
||
|
using ReZero.DependencyInjection;
|
||
|
using ReZero.SuperAPI;
|
||
|
|
||
|
namespace medical.insu.transfomer.Controllers
|
||
|
{
|
||
|
[Api(200100, GroupName = "分组0")]
|
||
|
public class StdObjectMappingController
|
||
|
{
|
||
|
[DI]
|
||
|
public std_object_mapping_business _StdObjectMappingBusiness { get; set; }
|
||
|
|
||
|
[ApiMethod("批量插入映射关系")]
|
||
|
public int insertList([FromBody]List<STD_OBJECT_MAPPING> list)
|
||
|
{
|
||
|
return _StdObjectMappingBusiness.ListInsert(list);
|
||
|
}
|
||
|
}
|
||
|
}
|