松下工位节拍PLC配置

tags/yfai-mes-ext-v1.0
yxw 1 year ago
parent 1a3101f282
commit 4fdc139fd3

@ -17,30 +17,30 @@ public interface ISxWorkCellTaktCollectPlcCfgService {
/**
* MES_PLC
*
* @param mesManageCode PLC
* @param workCellTaktCollectPlcCfg PLC
* @return mesManageCode
*/
@ApiOperation(value = "添加MES_松下工位节拍PLC配置信息", notes = "传入MES_松下工位节拍PLC配置对象")
SxWorkCellTaktCollectPlcCfg insertSxWorkCellTaktCollectPlcCfg(SxWorkCellTaktCollectPlcCfg mesManageCode);
SxWorkCellTaktCollectPlcCfg insertSxWorkCellTaktCollectPlcCfg(SxWorkCellTaktCollectPlcCfg workCellTaktCollectPlcCfg);
/**
* MES_PLC
*
* @param mesManageCode PLC
* @param workCellTaktCollectPlcCfg PLC
* @param userName
*/
@ApiOperation(value = "更新MES_松下工位节拍PLC配置", notes = "更新MES_松下工位节拍PLC配置")
void updateSxWorkCellTaktCollectPlcCfg(SxWorkCellTaktCollectPlcCfg mesManageCode, String userName);
void updateSxWorkCellTaktCollectPlcCfg(SxWorkCellTaktCollectPlcCfg workCellTaktCollectPlcCfg, String userName);
/**
* MES_PLC
*
* @param mesManageCode PLC
* @param workCellTaktCollectPlcCfg PLC
* @param pager
* @return
*/
@ApiOperation(value = "按条件分页查询MES_松下工位节拍PLC配置信息", notes = "按条件分页查询MES_松下工位节拍PLC配置信息")
ListPager<SxWorkCellTaktCollectPlcCfg> querySxWorkCellTaktCollectPlcCfgByPager(SxWorkCellTaktCollectPlcCfg mesManageCode, Pager pager);
ListPager<SxWorkCellTaktCollectPlcCfg> querySxWorkCellTaktCollectPlcCfgByPager(SxWorkCellTaktCollectPlcCfg workCellTaktCollectPlcCfg, Pager pager);
/**
*

@ -1,5 +1,7 @@
package cn.estsh.i3plus.ext.mes.pojo.bean;
import cn.estsh.i3plus.ext.mes.pojo.util.MesExtEnumUtil;
import cn.estsh.i3plus.pojo.base.annotation.AnnoOutputColumn;
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiParam;
@ -48,6 +50,7 @@ public class SxWorkCellTaktCollectPlcCfg extends BaseBean implements Serializabl
@Column(name = "STATUS")
@ApiParam("状态")
@AnnoOutputColumn(refClass = MesExtEnumUtil.IS_ENABLE.class, refForeignKey = "value", value = "description")
private Integer status;
@Column(name = "SYSTEM_SYNC_STATUS")

Loading…
Cancel
Save