| | |
| | | import org.jeecg.modules.dnc.entity.WorkStep; |
| | | import org.jeecg.modules.dnc.response.CommonCode; |
| | | import org.jeecg.modules.dnc.response.ResponseResult; |
| | | import org.jeecg.modules.dnc.service.IProductMixService; |
| | | import org.jeecg.modules.dnc.service.IWorkStepService; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import java.util.List; |
| | | |
| | | @Slf4j |
| | | @Api(tags = "工步表") |
| | |
| | | public class WorkStepController extends JeecgController<WorkStep, IWorkStepService> { |
| | | @Autowired |
| | | private IWorkStepService iWorkStepService; |
| | | @Autowired |
| | | private IProductMixService iProductMixService; |
| | | |
| | | @AutoLog(value = "工步表-新增工步信息") |
| | | @ApiOperation(value = "工步表-新增工步信息", notes = "工步表-新增工步信息") |