示例#1
0
 public async Task <PopularResult <string> > InsertAsync([FromBody] ViolationDto dto)
 {
     dto.Creator    = LoginUser.Id;
     dto.CreateTime = LoginUser.SysteDate;
     return(await _violationService.InsertAsync(dto));
 }