All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkedu_1_0.models.CreateFulfilRecordRequest Maven / Gradle / Ivy

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkedu_1_0.models;

import com.aliyun.tea.*;

public class CreateFulfilRecordRequest extends TeaModel {
    // 业务发生时间
    @NameInMap("bizTime")
    public Long bizTime;

    // 扩展信息,json格式
    @NameInMap("extInfo")
    public String extInfo;

    // 人脸id
    @NameInMap("faceId")
    public String faceId;

    // 场景
    @NameInMap("scene")
    public Long scene;

    // 设备sn号
    @NameInMap("sn")
    public String sn;

    // 员工id
    @NameInMap("userId")
    public String userId;

    public static CreateFulfilRecordRequest build(java.util.Map map) throws Exception {
        CreateFulfilRecordRequest self = new CreateFulfilRecordRequest();
        return TeaModel.build(map, self);
    }

    public CreateFulfilRecordRequest setBizTime(Long bizTime) {
        this.bizTime = bizTime;
        return this;
    }
    public Long getBizTime() {
        return this.bizTime;
    }

    public CreateFulfilRecordRequest setExtInfo(String extInfo) {
        this.extInfo = extInfo;
        return this;
    }
    public String getExtInfo() {
        return this.extInfo;
    }

    public CreateFulfilRecordRequest setFaceId(String faceId) {
        this.faceId = faceId;
        return this;
    }
    public String getFaceId() {
        return this.faceId;
    }

    public CreateFulfilRecordRequest setScene(Long scene) {
        this.scene = scene;
        return this;
    }
    public Long getScene() {
        return this.scene;
    }

    public CreateFulfilRecordRequest setSn(String sn) {
        this.sn = sn;
        return this;
    }
    public String getSn() {
        return this.sn;
    }

    public CreateFulfilRecordRequest setUserId(String userId) {
        this.userId = userId;
        return this;
    }
    public String getUserId() {
        return this.userId;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy