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

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

package com.alipay.api.domain;

import java.util.List;

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

/**
 * 发票业务result
 *
 * @author auto create
 * @since 1.0, 2019-09-04 14:49:50
 */
public class BillInferenceResult extends AlipayObject {

	private static final long serialVersionUID = 3168524121233578979L;

	/**
	 * 角度
	 */
	@ApiField("angle")
	private Long angle;

	/**
	 * 分数
	 */
	@ApiField("bill_score")
	private Long billScore;

	/**
	 * 算法版本
	 */
	@ApiField("bill_version")
	private String billVersion;

	/**
	 * 发票金额
	 */
	@ApiListField("capital_sum")
	@ApiField("string")
	private List capitalSum;

	/**
	 * 发票时间
	 */
	@ApiListField("date")
	@ApiField("string")
	private List date;

	/**
	 * 发票报销人
	 */
	@ApiListField("name")
	@ApiField("string")
	private List name;

	/**
	 * 发票号
	 */
	@ApiListField("no")
	@ApiField("string")
	private List no;

	/**
	 * 分辨率
	 */
	@ApiListField("rotate_shape")
	@ApiField("string")
	private List rotateShape;

	/**
	 * 发票标题
	 */
	@ApiListField("title")
	@ApiField("string")
	private List title;

	public Long getAngle() {
		return this.angle;
	}
	public void setAngle(Long angle) {
		this.angle = angle;
	}

	public Long getBillScore() {
		return this.billScore;
	}
	public void setBillScore(Long billScore) {
		this.billScore = billScore;
	}

	public String getBillVersion() {
		return this.billVersion;
	}
	public void setBillVersion(String billVersion) {
		this.billVersion = billVersion;
	}

	public List getCapitalSum() {
		return this.capitalSum;
	}
	public void setCapitalSum(List capitalSum) {
		this.capitalSum = capitalSum;
	}

	public List getDate() {
		return this.date;
	}
	public void setDate(List date) {
		this.date = date;
	}

	public List getName() {
		return this.name;
	}
	public void setName(List name) {
		this.name = name;
	}

	public List getNo() {
		return this.no;
	}
	public void setNo(List no) {
		this.no = no;
	}

	public List getRotateShape() {
		return this.rotateShape;
	}
	public void setRotateShape(List rotateShape) {
		this.rotateShape = rotateShape;
	}

	public List getTitle() {
		return this.title;
	}
	public void setTitle(List title) {
		this.title = title;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy