You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

74 lines
1.8 KiB

/**
* Copyright (c) 2002 Sinosoft Co.,LTD.
* All right reserved.
*/
package com.sinosoft.lis.vschema;
import com.sinosoft.lis.schema.LJRefundConfirmSubSchema;
import com.sinosoft.persistence.Set;
import com.sinosoft.persistence.impl.SetHelper;
import com.sinosoft.utility.SchemaSet;
/**
* <p>ClassName: LJRefundConfirmSubSet </p>
* <p>Description: DB层 Set 类文件 </p>
* <p>Copyright: Copyright (c) 2007</p>
* <p>Company: Sinosoft Co.,LTD </p>
* @Database Schema2
* @author Maker2
* @CreateDatetime 2019-03-16 16:05:26 914
*/
public class LJRefundConfirmSubSet extends SchemaSet<LJRefundConfirmSubSchema> implements Set<LJRefundConfirmSubSchema, LJRefundConfirmSubSet> {
// @Method
@Override
public void clear() {
super.clear();
}
@Override
public int size() {
return super.size();
}
@Override
public boolean removeRange(int begin, int end) {
return super.removeRange(begin, end);
}
public boolean add(LJRefundConfirmSubSchema schema) {
return super.add(schema);
}
public boolean addAll(LJRefundConfirmSubSet set) {
return super.add(set);
}
public boolean add(LJRefundConfirmSubSet set) {
return super.add(set);
}
public boolean remove(LJRefundConfirmSubSchema schema) {
return super.remove(schema);
}
public LJRefundConfirmSubSchema get(int index) {
return (LJRefundConfirmSubSchema) super.getObj(index);
}
public boolean set(int index, LJRefundConfirmSubSchema schema) {
return super.set(index, schema);
}
public boolean set(LJRefundConfirmSubSet set) {
return super.set(set);
}
public String encode() {
return SetHelper.encode(this);
}
public boolean decode(String str) {
return SetHelper.decode(this, str, mErrors);
}
}