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.
21 lines
603 B
21 lines
603 B
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? std_object_mapping_business { get; set; } |
|
|
|
[ApiMethod("批量插入映射关系")] |
|
public int insertList(List<STD_OBJECT_MAPPING> list) |
|
{ |
|
return std_object_mapping_business!.ListInsert(list); |
|
} |
|
} |
|
}
|
|
|