package com.moral.entity;
|
|
import java.util.Date;
|
|
import javax.persistence.Id;
|
|
import lombok.Data;
|
|
@Data
|
public class MachineActivate {
|
/**
|
* This field was generated by MyBatis Generator. This field corresponds to the database column machine_activate.id
|
* @mbg.generated Fri Dec 15 09:47:31 CST 2017
|
*/
|
@Id
|
private Integer id;
|
/**
|
* This field was generated by MyBatis Generator. This field corresponds to the database column machine_activate.mac_cpu_code
|
* @mbg.generated Fri Dec 15 09:47:31 CST 2017
|
*/
|
private String macCpuCode;
|
/**
|
* This field was generated by MyBatis Generator. This field corresponds to the database column machine_activate.activation_code
|
* @mbg.generated Fri Dec 15 09:47:31 CST 2017
|
*/
|
private String activationCode;
|
/**
|
* This field was generated by MyBatis Generator. This field corresponds to the database column machine_activate.organization_id
|
* @mbg.generated Fri Dec 15 09:47:31 CST 2017
|
*/
|
private Integer organizationId;
|
/**
|
* This field was generated by MyBatis Generator. This field corresponds to the database column machine_activate.is_used
|
* @mbg.generated Fri Dec 15 09:47:31 CST 2017
|
*/
|
private String isUsed;
|
/**
|
* This field was generated by MyBatis Generator. This field corresponds to the database column machine_activate.create_time
|
* @mbg.generated Fri Dec 15 09:47:31 CST 2017
|
*/
|
private Date createTime;
|
/**
|
* This field was generated by MyBatis Generator. This field corresponds to the database column machine_activate.expire_date
|
* @mbg.generated Fri Dec 15 09:47:31 CST 2017
|
*/
|
private Date expireDate;
|
|
}
|