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

com.alipay.api.domain.AlipayFundFlexiblestaffingEmployeehomeApplyModel Maven / Gradle / Ivy

package com.alipay.api.domain;

import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;

/**
 * 开卡申请
 *
 * @author auto create
 * @since 1.0, 2024-11-15 10:22:54
 */
public class AlipayFundFlexiblestaffingEmployeehomeApplyModel extends AlipayObject {

	private static final long serialVersionUID = 6194787947773468415L;

	/**
	 * 授权跳转类型
	 */
	@ApiField("apply_link_type")
	private String applyLinkType;

	/**
	 * 申请流程结束后的回跳URL。
	 */
	@ApiField("back_url")
	private String backUrl;

	/**
	 * 业务场景码
	 */
	@ApiField("biz_scene")
	private String bizScene;

	/**
	 * 跳转渠道
	 */
	@ApiField("channel")
	private String channel;

	/**
	 * 零工卡信息
	 */
	@ApiField("employee_card_info")
	private EmployeeCardInfo employeeCardInfo;

	/**
	 * 超时时间,格式:yyyy-MM-dd HH:mm
	 */
	@ApiField("expire_time")
	private String expireTime;

	/**
	 * 商户外部单号,用于开通场景下的幂等判断
	 */
	@ApiField("out_biz_no")
	private String outBizNo;

	/**
	 * 主体信息。新开通零工卡时必须提供,基于已有零工卡开通服务时可选,如果传递则会按照实际情况校验。
	 */
	@ApiField("principal_info")
	private ParticipantInfoDTO principalInfo;

	/**
	 * 业务产品码
	 */
	@ApiField("product_code")
	private String productCode;

	/**
	 * 零工卡租赁信息
	 */
	@ApiField("rent_agreement_info")
	private RentServiceInfo rentAgreementInfo;

	public String getApplyLinkType() {
		return this.applyLinkType;
	}
	public void setApplyLinkType(String applyLinkType) {
		this.applyLinkType = applyLinkType;
	}

	public String getBackUrl() {
		return this.backUrl;
	}
	public void setBackUrl(String backUrl) {
		this.backUrl = backUrl;
	}

	public String getBizScene() {
		return this.bizScene;
	}
	public void setBizScene(String bizScene) {
		this.bizScene = bizScene;
	}

	public String getChannel() {
		return this.channel;
	}
	public void setChannel(String channel) {
		this.channel = channel;
	}

	public EmployeeCardInfo getEmployeeCardInfo() {
		return this.employeeCardInfo;
	}
	public void setEmployeeCardInfo(EmployeeCardInfo employeeCardInfo) {
		this.employeeCardInfo = employeeCardInfo;
	}

	public String getExpireTime() {
		return this.expireTime;
	}
	public void setExpireTime(String expireTime) {
		this.expireTime = expireTime;
	}

	public String getOutBizNo() {
		return this.outBizNo;
	}
	public void setOutBizNo(String outBizNo) {
		this.outBizNo = outBizNo;
	}

	public ParticipantInfoDTO getPrincipalInfo() {
		return this.principalInfo;
	}
	public void setPrincipalInfo(ParticipantInfoDTO principalInfo) {
		this.principalInfo = principalInfo;
	}

	public String getProductCode() {
		return this.productCode;
	}
	public void setProductCode(String productCode) {
		this.productCode = productCode;
	}

	public RentServiceInfo getRentAgreementInfo() {
		return this.rentAgreementInfo;
	}
	public void setRentAgreementInfo(RentServiceInfo rentAgreementInfo) {
		this.rentAgreementInfo = rentAgreementInfo;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy