This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
k18-ntcs-web-argus-service/src/main/java/com/nis/supcan/Common.java
zhangdongxu 13acafd43d 上传代码
2017-12-19 14:55:52 +08:00

60 lines
1.1 KiB
Java

/**
* Copyright &copy; 2012-2014 <a href="https://github.com/thinkgem/jeesite">JeeSite</a> All rights reserved.
*/
package com.nis.supcan;
import java.util.List;
import com.google.common.collect.Lists;
import com.nis.web.security.IdGen;
import com.thoughtworks.xstream.annotations.XStreamAlias;
/**
* 硕正Common
* @author WangZhen
* @version 2013-11-04
*/
public class Common {
/**
* 属性对象
*/
@XStreamAlias("Properties")
protected Properties properties;
/**
* 字体对象
*/
@XStreamAlias("Fonts")
protected List<Font> fonts;
public Common() {
properties = new Properties(IdGen.uuid());
fonts = Lists.newArrayList(
new Font("宋体", "134", "-12"),
new Font("宋体", "134", "-13", "700"));
}
public Common(Properties properties) {
this();
this.properties = properties;
}
public Properties getProperties() {
return properties;
}
public void setProperties(Properties properties) {
this.properties = properties;
}
public List<Font> getFonts() {
return fonts;
}
public void setFonts(List<Font> fonts) {
this.fonts = fonts;
}
}