/** * Company Name : 中贸促信息技术有限责任公司 * Project Name:sfzxWebsite * File Name:TaxableGoods.java * Package Name:ccpit.business.taxableGoods * Date:2017年4月27日下午12:47:22 * Copyright (c) 2017, dingwei@ccpit.org All Rights Reserved. * */ package ccpit.business.taxableGoods; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.Table; /** * ClassName:TaxableGoods <br/> * Function: TODO 优惠税率商品信息实体类. <br/> * Reason: TODO ADD REASON. <br/> * Date: 2017年4月27日 下午12:47:22 <br/> * @author dingwei * @version * @since JDK 1.8.0 * @see */ @Entity @Table(name = "sfzx_TaxableGoods") public class TaxableGoods { private long id; /** * 区域 */ private String area; /** * 国家 */ private String country; /** * 税则号 */ private String taxNumber; /** * 描述 */ private String goodsDesc; @Id @GeneratedValue(strategy=GenerationType.AUTO) public long getId() { return id; } public void setId(long id) { this.id = id; } public String getArea() { return area; } public void setArea(String area) { this.area = area; } public String getCountry() { return country; } public void setCountry(String country) { this.country = country; } public String getTaxNumber() { return taxNumber; } public void setTaxNumber(String taxNumber) { this.taxNumber = taxNumber; } @Column(columnDefinition = "text") public String getGoodsDesc() { return goodsDesc; } public void setGoodsDesc(String goodsDesc) { this.goodsDesc = goodsDesc; } }