123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- package com.kmall.api.entity;
- import java.io.Serializable;
- import java.util.Date;
- public class MallStoreGoodsGallery implements Serializable {
- private Integer id;
- private Integer goodsId;
- private Integer productStoreId;
- private String imgDesc;
- private Integer sortOrder;
- private String imgUrl;
- private String goodsBizType;
- private String createrSn;
- private Date createTime;
- private String moderSn;
- private Date modTime;
- private Date tstm;
- private static final long serialVersionUID = 1L;
- public MallStoreGoodsGallery() {
- super();
- }
- public Integer getId() {
- return id;
- }
- public void setId(Integer id) {
- this.id = id;
- }
- public Integer getGoodsId() {
- return goodsId;
- }
- public void setGoodsId(Integer goodsId) {
- this.goodsId = goodsId;
- }
- public Integer getProductStoreId() {
- return productStoreId;
- }
- public void setProductStoreId(Integer productStoreId) {
- this.productStoreId = productStoreId;
- }
- public String getImgDesc() {
- return imgDesc;
- }
- public void setImgDesc(String imgDesc) {
- this.imgDesc = imgDesc == null ? null : imgDesc.trim();
- }
- public Integer getSortOrder() {
- return sortOrder;
- }
- public void setSortOrder(Integer sortOrder) {
- this.sortOrder = sortOrder;
- }
- public String getImgUrl() {
- return imgUrl;
- }
- public void setImgUrl(String imgUrl) {
- this.imgUrl = imgUrl == null ? null : imgUrl.trim();
- }
- public String getGoodsBizType() {
- return goodsBizType;
- }
- public void setGoodsBizType(String goodsBizType) {
- this.goodsBizType = goodsBizType == null ? null : goodsBizType.trim();
- }
- public String getCreaterSn() {
- return createrSn;
- }
- public void setCreaterSn(String createrSn) {
- this.createrSn = createrSn == null ? null : createrSn.trim();
- }
- public Date getCreateTime() {
- return createTime;
- }
- public void setCreateTime(Date createTime) {
- this.createTime = createTime;
- }
- public String getModerSn() {
- return moderSn;
- }
- public void setModerSn(String moderSn) {
- this.moderSn = moderSn == null ? null : moderSn.trim();
- }
- public Date getModTime() {
- return modTime;
- }
- public void setModTime(Date modTime) {
- this.modTime = modTime;
- }
- public Date getTstm() {
- return tstm;
- }
- public void setTstm(Date tstm) {
- this.tstm = tstm;
- }
- }
|