26 lines
464 B
Java
26 lines
464 B
Java
|
|
/**
|
||
|
|
* Copyright © 2012-2014 <a href="https://github.com/thinkgem/jeesite">JeeSite</a> All rights reserved.
|
||
|
|
*/
|
||
|
|
package com.nis.supcan;
|
||
|
|
|
||
|
|
import com.thoughtworks.xstream.annotations.XStreamAlias;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 硕正FreeForm
|
||
|
|
* @author WangZhen
|
||
|
|
* @version 2013-11-04
|
||
|
|
*/
|
||
|
|
@XStreamAlias("FreeForm")
|
||
|
|
public class FreeForm extends Common {
|
||
|
|
|
||
|
|
public FreeForm() {
|
||
|
|
super();
|
||
|
|
}
|
||
|
|
|
||
|
|
public FreeForm(Properties properties) {
|
||
|
|
this();
|
||
|
|
this.properties = properties;
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|