#
luxiaotao1123
2024-02-13 edfa49f201d3fc8fc6b51b700e91f80246660855
zy-asrs-wcs/src/main/java/com/zy/asrs/wcs/sys/entity/OperationRecord.java
@@ -71,6 +71,12 @@
    private String response;
    /**
     * 消耗时间
     */
    @ApiModelProperty(value= "消耗时间")
    private Integer spendTime;
    /**
     * 异常内容
     */
    @ApiModelProperty(value= "异常内容")
@@ -109,7 +115,7 @@
    public OperationRecord() {}
    public OperationRecord(String namespace,String url,String appkey,String timestamp,String clientIp,String request,String response,String err,Integer result,Long userId,Long hostId,Date createTime,String memo) {
    public OperationRecord(String namespace, String url, String appkey, String timestamp, String clientIp, String request, String response, Integer spendTime, String err, Integer result, Long userId, Long hostId, Date createTime, String memo) {
        this.namespace = namespace;
        this.url = url;
        this.appkey = appkey;
@@ -117,6 +123,7 @@
        this.clientIp = clientIp;
        this.request = request;
        this.response = response;
        this.spendTime = spendTime;
        this.err = err;
        this.result = result;
        this.userId = userId;