ZimPlatfProject/src/com/zchd/zim/entity/AppInfo.java
2022-11-19 16:00:50 +08:00

35 lines
705 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.zchd.zim.entity;
import lombok.Getter;
import lombok.Setter;
import javax.persistence.Column;
import javax.persistence.Id;
import javax.persistence.Table;
@Setter
@Getter
@Table(comment = "平台信息表")
public class AppInfo {
@Id
@Column(comment = "[平台标识]")
private String appid = "";
@Column(comment = "[平台名称]")
private String appname = "";
@Column(comment = "[校验码]")
private String appsecret = "";
@Column(comment = "[创建时间]")
private long createtime;
@Column(comment = "[修改时间]")
private long updatetime;
@Column(comment = "[状态]10正常, 40停用80删除")
private short status;
}