12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- /**
- * 系统服务
- */
- package com.miniframe.generate.comm.system;
- import com.miniframe.core.BaseMapModel;
- import java.io.Serializable;
- /**
- * 文件上传
- */
- public class A_HM0006 extends BaseMapModel implements Serializable {
- private static final long serialVersionUID = -1463838678425832212L;
- String shopcode;//商品编码
- /**
- *商品编码
- */
- public void setShopcode(String shopcode) {
- this.shopcode=shopcode;
- }
- /**
- *商品编码
- */
- public String getShopcode() {
- return this.shopcode;
- }
- String shopname;//商品名称
- /**
- *商品名称
- */
- public void setShopname(String shopname) {
- this.shopname=shopname;
- }
- /**
- *商品名称
- */
- public String getShopname() {
- return this.shopname;
- }
- String filename1;//文件名称
- /**
- *文件名称
- */
- public void setFilename1(String filename1) {
- this.filename1=filename1;
- }
- /**
- *文件名称
- */
- public String getFilename1() {
- return this.filename1;
- }
- String filename2;//文件名称
- /**
- *文件名称
- */
- public void setFilename2(String filename2) {
- this.filename2=filename2;
- }
- /**
- *文件名称
- */
- public String getFilename2() {
- return this.filename2;
- }
- }
|