| 12345678910111213141516 |
- import service from '@/utils/request'
- // @Tags SysApi
- // @Summary 删除客户
- // @Security ApiKeyAuth
- // @accept application/json
- // @Produce application/json
- // @Param data body dbModel.ExaCustomer true "删除客户"
- // @Success 200 {string} string "{"success":true,"data":{},"msg":"获取成功"}"
- // @Router /customer/customer [post]
- export const demoCustomer = (data) => {
- return service({
- url: '/customer/customer',
- method: 'post',
- data
- })
- }
|