1234567891011121314151617181920212223242526272829303132333435363738 |
- /**
- * 犀工网
- */
- package com.miniframe.generate.comm.xigital;
- import com.miniframe.core.BaseMapModel;
- import java.io.Serializable;
- /**
- * 资源设置IP
- */
- public class A_XG0006 extends BaseMapModel implements Serializable {
- private static final long serialVersionUID = -1463838678425832212L;
- String resId;//资源ID
- /**
- *资源ID
- */
- public void setResId(String resId) {
- this.resId=resId;
- }
- /**
- *资源ID
- */
- public String getResId() {
- return this.resId;
- }
- String resIp;//资源IP
- /**
- *资源IP
- */
- public void setResIp(String resIp) {
- this.resIp=resIp;
- }
- /**
- *资源IP
- */
- public String getResIp() {
- return this.resIp;
- }
- }
|