5 changed files with 229 additions and 3 deletions
@ -0,0 +1,206 @@ |
|||
package cn.chjyj.szwh.vo; |
|||
|
|||
/** |
|||
* 商品资源 VO |
|||
* |
|||
*/ |
|||
public class GoodsSourceVo { |
|||
private String goods_isli_code; |
|||
private String servicecode; |
|||
private String linkcode; |
|||
private String publisherid; |
|||
private String registrant; |
|||
private String resolution_url; |
|||
private String source_type; |
|||
private String source_name_type; |
|||
private String source_name; |
|||
private String sourceIdentify; |
|||
private String source_fragment; |
|||
private String target_name; |
|||
private String target_name_type; |
|||
private String targetIdentify; |
|||
private String target_fragment; |
|||
private String targetFormat; |
|||
private String source_data; |
|||
private String target_data; |
|||
private String metadataXml; |
|||
private String cancellation_reason; |
|||
private String cancellationtime; |
|||
private String allocationtime; |
|||
|
|||
public String getGoods_isli_code() { |
|||
return goods_isli_code; |
|||
} |
|||
|
|||
public void setGoods_isli_code(String goods_isli_code) { |
|||
this.goods_isli_code = goods_isli_code; |
|||
} |
|||
|
|||
public String getServicecode() { |
|||
return servicecode; |
|||
} |
|||
|
|||
public void setServicecode(String servicecode) { |
|||
this.servicecode = servicecode; |
|||
} |
|||
|
|||
public String getLinkcode() { |
|||
return linkcode; |
|||
} |
|||
|
|||
public void setLinkcode(String linkcode) { |
|||
this.linkcode = linkcode; |
|||
} |
|||
|
|||
public String getPublisherid() { |
|||
return publisherid; |
|||
} |
|||
|
|||
public void setPublisherid(String publisherid) { |
|||
this.publisherid = publisherid; |
|||
} |
|||
|
|||
public String getRegistrant() { |
|||
return registrant; |
|||
} |
|||
|
|||
public void setRegistrant(String registrant) { |
|||
this.registrant = registrant; |
|||
} |
|||
|
|||
public String getResolution_url() { |
|||
return resolution_url; |
|||
} |
|||
|
|||
public void setResolution_url(String resolution_url) { |
|||
this.resolution_url = resolution_url; |
|||
} |
|||
|
|||
public String getSource_type() { |
|||
return source_type; |
|||
} |
|||
|
|||
public void setSource_type(String source_type) { |
|||
this.source_type = source_type; |
|||
} |
|||
|
|||
public String getSource_name_type() { |
|||
return source_name_type; |
|||
} |
|||
|
|||
public void setSource_name_type(String source_name_type) { |
|||
this.source_name_type = source_name_type; |
|||
} |
|||
|
|||
public String getSource_name() { |
|||
return source_name; |
|||
} |
|||
|
|||
public void setSource_name(String source_name) { |
|||
this.source_name = source_name; |
|||
} |
|||
|
|||
public String getSourceIdentify() { |
|||
return sourceIdentify; |
|||
} |
|||
|
|||
public void setSourceIdentify(String sourceIdentify) { |
|||
this.sourceIdentify = sourceIdentify; |
|||
} |
|||
|
|||
public String getSource_fragment() { |
|||
return source_fragment; |
|||
} |
|||
|
|||
public void setSource_fragment(String source_fragment) { |
|||
this.source_fragment = source_fragment; |
|||
} |
|||
|
|||
public String getTarget_name() { |
|||
return target_name; |
|||
} |
|||
|
|||
public void setTarget_name(String target_name) { |
|||
this.target_name = target_name; |
|||
} |
|||
|
|||
public String getTarget_name_type() { |
|||
return target_name_type; |
|||
} |
|||
|
|||
public void setTarget_name_type(String target_name_type) { |
|||
this.target_name_type = target_name_type; |
|||
} |
|||
|
|||
public String getTargetIdentify() { |
|||
return targetIdentify; |
|||
} |
|||
|
|||
public void setTargetIdentify(String targetIdentify) { |
|||
this.targetIdentify = targetIdentify; |
|||
} |
|||
|
|||
public String getTarget_fragment() { |
|||
return target_fragment; |
|||
} |
|||
|
|||
public void setTarget_fragment(String target_fragment) { |
|||
this.target_fragment = target_fragment; |
|||
} |
|||
|
|||
public String getTargetFormat() { |
|||
return targetFormat; |
|||
} |
|||
|
|||
public void setTargetFormat(String targetFormat) { |
|||
this.targetFormat = targetFormat; |
|||
} |
|||
|
|||
public String getSource_data() { |
|||
return source_data; |
|||
} |
|||
|
|||
public void setSource_data(String source_data) { |
|||
this.source_data = source_data; |
|||
} |
|||
|
|||
public String getTarget_data() { |
|||
return target_data; |
|||
} |
|||
|
|||
public void setTarget_data(String target_data) { |
|||
this.target_data = target_data; |
|||
} |
|||
|
|||
public String getMetadataXml() { |
|||
return metadataXml; |
|||
} |
|||
|
|||
public void setMetadataXml(String metadataXml) { |
|||
this.metadataXml = metadataXml; |
|||
} |
|||
|
|||
public String getCancellation_reason() { |
|||
return cancellation_reason; |
|||
} |
|||
|
|||
public void setCancellation_reason(String cancellation_reason) { |
|||
this.cancellation_reason = cancellation_reason; |
|||
} |
|||
|
|||
public String getCancellationtime() { |
|||
return cancellationtime; |
|||
} |
|||
|
|||
public void setCancellationtime(String cancellationtime) { |
|||
this.cancellationtime = cancellationtime; |
|||
} |
|||
|
|||
public String getAllocationtime() { |
|||
return allocationtime; |
|||
} |
|||
|
|||
public void setAllocationtime(String allocationtime) { |
|||
this.allocationtime = allocationtime; |
|||
} |
|||
} |
|||
Loading…
Reference in new issue