自动化立体仓库 - WMS系统
#
Junjie
2023-09-09 927ef945f50493e6257056856459ac4d2c78804f
#
6个文件已修改
24 ■■■■■ 已修改文件
src/main/java/com/zy/asrs/entity/BasLiftOpt.java 10 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/java/com/zy/asrs/entity/BasShuttleOpt.java 10 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/resources/mapper/BasLiftOptMapper.xml 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/resources/mapper/BasShuttleOptMapper.xml 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/webapp/static/js/basLiftOpt/basLiftOpt.js 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/webapp/static/js/basShuttleErrLog/basShuttleOpt.js 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/java/com/zy/asrs/entity/BasLiftOpt.java
@@ -76,9 +76,16 @@
    @ApiModelProperty(value= "命令")
    private String command;
    /**
     * 系统状态
     */
    @ApiModelProperty(value= "系统状态")
    @TableField("system_status")
    private String systemStatus;
    public BasLiftOpt() {}
    public BasLiftOpt(Integer wrkNo,Integer liftNo,Date sendTime,Date updateTime,Long updateBy,String memo,String command) {
    public BasLiftOpt(Integer wrkNo, Integer liftNo, Date sendTime, Date updateTime, Long updateBy, String memo, String command, String systemStatus) {
        this.wrkNo = wrkNo;
        this.liftNo = liftNo;
        this.sendTime = sendTime;
@@ -86,6 +93,7 @@
        this.updateBy = updateBy;
        this.memo = memo;
        this.command = command;
        this.systemStatus = systemStatus;
    }
//    BasLiftOpt basLiftOpt = new BasLiftOpt(
src/main/java/com/zy/asrs/entity/BasShuttleOpt.java
@@ -99,9 +99,16 @@
    @ApiModelProperty(value= "命令")
    private String command;
    /**
     * 系统状态
     */
    @ApiModelProperty(value= "系统状态")
    @TableField("system_status")
    private String systemStatus;
    public BasShuttleOpt() {}
    public BasShuttleOpt(Integer wrkNo,Integer shuttleNo, Date sendTime,String mode,String sourceLocNo,String distLocNo, Date updateTime, Long updateBy, String memo,String command) {
    public BasShuttleOpt(Integer wrkNo, Integer shuttleNo, Date sendTime, String mode, String sourceLocNo, String distLocNo, Date updateTime, Long updateBy, String memo, String command, String systemStatus) {
        this.wrkNo = wrkNo;
        this.shuttleNo = shuttleNo;
        this.sendTime = sendTime;
@@ -112,6 +119,7 @@
        this.updateBy = updateBy;
        this.memo = memo;
        this.command = command;
        this.systemStatus = systemStatus;
    }
//    BasShuttleErrLog basShuttleErrLog = new BasShuttleErrLog(
src/main/resources/mapper/BasLiftOptMapper.xml
@@ -12,6 +12,7 @@
        <result column="update_by" property="updateBy" />
        <result column="memo" property="memo" />
        <result column="command" property="command" />
        <result column="system_status" property="systemStatus" />
    </resultMap>
src/main/resources/mapper/BasShuttleOptMapper.xml
@@ -15,6 +15,7 @@
        <result column="update_by" property="updateBy" />
        <result column="memo" property="memo" />
        <result column="command" property="command" />
        <result column="system_status" property="systemStatus" />
    </resultMap>
src/main/webapp/static/js/basLiftOpt/basLiftOpt.js
@@ -30,6 +30,7 @@
            ,{field: 'updateBy$', align: 'center',title: '修改人员'}
            ,{field: 'memo', align: 'center',title: '备注'}
            ,{field: 'command', align: 'center',title: '命令'}
            ,{field: 'systemStatus', align: 'center',title: '系统状态'}
            // ,{fixed: 'right', title:'操作', align: 'center', toolbar: '#operate', width:120}
        ]],
src/main/webapp/static/js/basShuttleErrLog/basShuttleOpt.js
@@ -27,6 +27,7 @@
            ,{field: 'sourceLocNo', align: 'center',title: '起点库位'}
            ,{field: 'distLocNo', align: 'center',title: '目标库位'}
            ,{field: 'command', align: 'center',title: '命令'}
            ,{field: 'systemStatus', align: 'center',title: '系统状态'}
            ,{field: 'sendTime$', align: 'center',title: '下发时间'}
            ,{field: 'updateTime$', align: 'center',title: '修改时间'}
            ,{field: 'updateBy$', align: 'center',title: '修改人员'}