修改 铝内胆设备看板
parent
22423cd4e1
commit
25a7564a85
@ -0,0 +1,19 @@
|
||||
package com.productionboard.controller;
|
||||
|
||||
import org.springframework.stereotype.Controller;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
|
||||
/**
|
||||
* @author wanghao
|
||||
* @date 2022/9/29 11:48
|
||||
*/
|
||||
@Controller()
|
||||
@RequestMapping("/index")
|
||||
public class test {
|
||||
|
||||
@GetMapping()
|
||||
private String index(){
|
||||
return "/index";
|
||||
}
|
||||
}
|
@ -0,0 +1,35 @@
|
||||
package com.productionboard.entity.MesProduction;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import lombok.experimental.Accessors;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* 设备故障统计
|
||||
* @author WenJY
|
||||
* @date 2022年06月09日 17:10
|
||||
*/
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = false)
|
||||
@Accessors(chain = true)
|
||||
@TableName("SCADA_DEVICE_FAULT")
|
||||
public class DeviceFault implements Serializable {
|
||||
|
||||
/** 名称 */
|
||||
@TableField("STATION")
|
||||
private String station;
|
||||
|
||||
/** 数量 */
|
||||
@TableField("VALUE")
|
||||
private String value;
|
||||
|
||||
/** 类型 */
|
||||
@TableField("TYPE")
|
||||
private String hullStoreAmount;
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,42 @@
|
||||
package com.productionboard.entity.MesProduction;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import lombok.experimental.Accessors;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* 计划清空
|
||||
* @author WenJY
|
||||
* @date 2022年06月09日 17:10
|
||||
*/
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = false)
|
||||
@Accessors(chain = true)
|
||||
@TableName("SCADA_PLAN_INFO")
|
||||
public class PlanInfo implements Serializable {
|
||||
|
||||
/** 物料名称 */
|
||||
@TableField("SPE")
|
||||
private String spe;
|
||||
|
||||
/** 内胆库库存 */
|
||||
@TableField("OQ")
|
||||
private String oq;
|
||||
|
||||
/** 箱壳库库存 */
|
||||
@TableField("AQ")
|
||||
private String aq;
|
||||
|
||||
/** 工位编号 */
|
||||
@TableField("ROUND")
|
||||
private String round;
|
||||
@TableField("CHA")
|
||||
private String cha;
|
||||
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,17 @@
|
||||
package com.productionboard.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.productionboard.entity.MesProduction.DeviceFault;
|
||||
import com.productionboard.entity.MesProduction.MesMaterialStoreStatistics;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* MES物料库存统计
|
||||
* @author WenJY
|
||||
* @date 2022年06月09日 17:14
|
||||
*/
|
||||
@Mapper
|
||||
@Repository
|
||||
public interface DeviceFaultMapper extends BaseMapper<DeviceFault>{
|
||||
}
|
@ -0,0 +1,17 @@
|
||||
package com.productionboard.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.productionboard.entity.MesProduction.DeviceFault;
|
||||
import com.productionboard.entity.MesProduction.PlanInfo;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* MES物料库存统计
|
||||
* @author WenJY
|
||||
* @date 2022年06月09日 17:14
|
||||
*/
|
||||
@Mapper
|
||||
@Repository
|
||||
public interface PlanInfoMapper extends BaseMapper<PlanInfo>{
|
||||
}
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue