|
@@ -176,6 +176,15 @@ public class IndustryController : BaseController
|
|
[HttpGet("sms_template/{id}")]
|
|
[HttpGet("sms_template/{id}")]
|
|
public async Task<SnapshotSMSTemplateItemsOutDto> GetSMSTemplateDetailAsync(string id)
|
|
public async Task<SnapshotSMSTemplateItemsOutDto> GetSMSTemplateDetailAsync(string id)
|
|
=> await _industryApplication.GetSMSTemplateDetailAsync(id);
|
|
=> await _industryApplication.GetSMSTemplateDetailAsync(id);
|
|
|
|
+
|
|
|
|
+ /// <summary>
|
|
|
|
+ /// 删除短信模板
|
|
|
|
+ /// </summary>
|
|
|
|
+ /// <param name="ids"></param>
|
|
|
|
+ /// <returns></returns>
|
|
|
|
+ [HttpDelete("sms_template")]
|
|
|
|
+ public async Task DeleteSmsTemplateAsync([FromBody] IList<string> ids)
|
|
|
|
+ => await _industryApplication.DeleteSMSTemplateAsync(ids);
|
|
#endregion
|
|
#endregion
|
|
|
|
|
|
#region 区域从业人员
|
|
#region 区域从业人员
|