| | |
| | | } |
| | | |
| | | [HttpPost, Route("TTTTTAssignLocation"), AllowAnonymous, MethodParamsValidate] |
| | | public WebResponseContent TTTTTAssignLocation() |
| | | public WebResponseContent TTTTTAssignLocation(int locationType) |
| | | { |
| | | |
| | | |
| | | |
| | | var sddd = Service.AssignLocation(); |
| | | var sddd = Service.AssignLocation(locationType); |
| | | |
| | | return WebResponseContent.Instance.OK("resdasd", sddd); |
| | | } |
| | |
| | | var lists = Service.GetLocationTypes(); |
| | | return WebResponseContent.Instance.OK("", lists); |
| | | } |
| | | |
| | | [HttpPost, Route("LocationDisableStatus")] |
| | | public WebResponseContent LocationDisableStatus([FromBody]int[] keys) |
| | | { |
| | | return Service.LocationDisableStatus(keys); |
| | | } |
| | | |
| | | [HttpPost, Route("LocationEnableStatus")] |
| | | public WebResponseContent LocationEnableStatus([FromBody] int[] keys) |
| | | { |
| | | return Service.LocationEnableStatus(keys); |
| | | } |
| | | } |
| | | } |