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

com.tencentcloudapi.youmall.v20180228.models.PersonCoordinate Maven / Gradle / Ivy

There is a newer version: 3.1.894
Show newest version
/*
 * Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.tencentcloudapi.youmall.v20180228.models;

import com.tencentcloudapi.common.AbstractModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;

public class PersonCoordinate extends AbstractModel{

    /**
    * CAD图X坐标
    */
    @SerializedName("CADX")
    @Expose
    private Float CADX;

    /**
    * CAD图Y坐标
    */
    @SerializedName("CADY")
    @Expose
    private Float CADY;

    /**
    * 抓拍时间点
    */
    @SerializedName("CapTime")
    @Expose
    private String CapTime;

    /**
    * 抓拍图片
    */
    @SerializedName("CapPic")
    @Expose
    private String CapPic;

    /**
    * 卖场区域类型
    */
    @SerializedName("MallAreaType")
    @Expose
    private Long MallAreaType;

    /**
    * 坐标编号
    */
    @SerializedName("PosId")
    @Expose
    private Long PosId;

    /**
    * 门店编号
    */
    @SerializedName("ShopId")
    @Expose
    private Long ShopId;

    /**
    * 事件
    */
    @SerializedName("Event")
    @Expose
    private String Event;

    /**
     * Get CAD图X坐标 
     * @return CADX CAD图X坐标
     */
    public Float getCADX() {
        return this.CADX;
    }

    /**
     * Set CAD图X坐标
     * @param CADX CAD图X坐标
     */
    public void setCADX(Float CADX) {
        this.CADX = CADX;
    }

    /**
     * Get CAD图Y坐标 
     * @return CADY CAD图Y坐标
     */
    public Float getCADY() {
        return this.CADY;
    }

    /**
     * Set CAD图Y坐标
     * @param CADY CAD图Y坐标
     */
    public void setCADY(Float CADY) {
        this.CADY = CADY;
    }

    /**
     * Get 抓拍时间点 
     * @return CapTime 抓拍时间点
     */
    public String getCapTime() {
        return this.CapTime;
    }

    /**
     * Set 抓拍时间点
     * @param CapTime 抓拍时间点
     */
    public void setCapTime(String CapTime) {
        this.CapTime = CapTime;
    }

    /**
     * Get 抓拍图片 
     * @return CapPic 抓拍图片
     */
    public String getCapPic() {
        return this.CapPic;
    }

    /**
     * Set 抓拍图片
     * @param CapPic 抓拍图片
     */
    public void setCapPic(String CapPic) {
        this.CapPic = CapPic;
    }

    /**
     * Get 卖场区域类型 
     * @return MallAreaType 卖场区域类型
     */
    public Long getMallAreaType() {
        return this.MallAreaType;
    }

    /**
     * Set 卖场区域类型
     * @param MallAreaType 卖场区域类型
     */
    public void setMallAreaType(Long MallAreaType) {
        this.MallAreaType = MallAreaType;
    }

    /**
     * Get 坐标编号 
     * @return PosId 坐标编号
     */
    public Long getPosId() {
        return this.PosId;
    }

    /**
     * Set 坐标编号
     * @param PosId 坐标编号
     */
    public void setPosId(Long PosId) {
        this.PosId = PosId;
    }

    /**
     * Get 门店编号 
     * @return ShopId 门店编号
     */
    public Long getShopId() {
        return this.ShopId;
    }

    /**
     * Set 门店编号
     * @param ShopId 门店编号
     */
    public void setShopId(Long ShopId) {
        this.ShopId = ShopId;
    }

    /**
     * Get 事件 
     * @return Event 事件
     */
    public String getEvent() {
        return this.Event;
    }

    /**
     * Set 事件
     * @param Event 事件
     */
    public void setEvent(String Event) {
        this.Event = Event;
    }

    public PersonCoordinate() {
    }

    /**
     * NOTE: Any ambiguous key set via .set("AnyKey", "value") will be a shallow copy,
     *       and any explicit key, i.e Foo, set via .setFoo("value") will be a deep copy.
     */
    public PersonCoordinate(PersonCoordinate source) {
        if (source.CADX != null) {
            this.CADX = new Float(source.CADX);
        }
        if (source.CADY != null) {
            this.CADY = new Float(source.CADY);
        }
        if (source.CapTime != null) {
            this.CapTime = new String(source.CapTime);
        }
        if (source.CapPic != null) {
            this.CapPic = new String(source.CapPic);
        }
        if (source.MallAreaType != null) {
            this.MallAreaType = new Long(source.MallAreaType);
        }
        if (source.PosId != null) {
            this.PosId = new Long(source.PosId);
        }
        if (source.ShopId != null) {
            this.ShopId = new Long(source.ShopId);
        }
        if (source.Event != null) {
            this.Event = new String(source.Event);
        }
    }


    /**
     * Internal implementation, normal users should not use it.
     */
    public void toMap(HashMap map, String prefix) {
        this.setParamSimple(map, prefix + "CADX", this.CADX);
        this.setParamSimple(map, prefix + "CADY", this.CADY);
        this.setParamSimple(map, prefix + "CapTime", this.CapTime);
        this.setParamSimple(map, prefix + "CapPic", this.CapPic);
        this.setParamSimple(map, prefix + "MallAreaType", this.MallAreaType);
        this.setParamSimple(map, prefix + "PosId", this.PosId);
        this.setParamSimple(map, prefix + "ShopId", this.ShopId);
        this.setParamSimple(map, prefix + "Event", this.Event);

    }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy