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

me.chanjar.weixin.mp.bean.invoice.reimburse.InvoiceCommodityInfo Maven / Gradle / Ivy

There is a newer version: 4.6.7.B
Show newest version
package me.chanjar.weixin.mp.bean.invoice.reimburse;

import lombok.Data;

import java.io.Serializable;

/**
 * 
 * 发票商品信息
 * 
* @author xiaoyu * @since 2021-03-23 */ @Data public class InvoiceCommodityInfo implements Serializable { private static final long serialVersionUID = 5139576099614652523L; /** * 项目(商品)名称 */ private String name; /** * 项目数量 */ private Integer num; /** * 项目单位 */ private String unit; /** * 单价,以分为单位 */ private Integer price; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy