package org.sxkj.common.utils.license;
|
|
import lombok.Data;
|
|
import java.util.Date;
|
import java.util.List;
|
|
@Data
|
public class LicenseData {
|
/**
|
* 机构id
|
*/
|
private String licenseId;
|
/**
|
* 机构名称
|
*/
|
private String licenseName;
|
/**
|
* 类型 1 不验证过期时间, 2=验证过期时间
|
*/
|
private Integer licenseType;
|
/**
|
* 过期时间
|
*/
|
private Date expireDay;
|
/**
|
* 设备数量 -1
|
*/
|
private Integer printClientCount=1;
|
/**
|
* 是否校验机器码 true 校验
|
*/
|
private Boolean checkMachineCode=false;
|
/**
|
* 机器码列表
|
*/
|
private List<String> machineCode;
|
}
|