| | |
| | | |
| | | import com.bstek.dorado.annotation.DataProvider; |
| | | import com.bstek.dorado.annotation.Expose; |
| | | import com.fzzy.common.constant.BizTypeEnum; |
| | | import com.fzzy.igds.service.InoutConfService; |
| | | import com.fzzy.igds.domain.InoutConf; |
| | | import com.ruoyi.common.annotation.Log; |
| | | import com.ruoyi.common.enums.BusinessType; |
| | | import org.springframework.beans.BeanUtils; |
| | | import org.springframework.stereotype.Component; |
| | | import javax.annotation.Resource; |
| | |
| | | * @return |
| | | */ |
| | | @Expose |
| | | @Log(title = "出入库配置", businessType = BusinessType.DELETE,bizType = BizTypeEnum.INOUT) |
| | | public String delData(InoutConf data) { |
| | | InoutConf inoutConf = new InoutConf(); |
| | | BeanUtils.copyProperties(data, inoutConf); |
| | |
| | | */ |
| | | @Expose |
| | | public void flushCache(InoutConf data) { |
| | | inoutConfService.flushInoutConfCache(data.getCompanyId(), data.getDeptId()); |
| | | inoutConfService.flushInoutConfCache(data.getCompanyId()); |
| | | } |
| | | |
| | | } |