package com.sandu.ximon.dao.domain;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.fasterxml.jackson.annotation.JsonIgnore;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
|
/**
|
*
|
* @TableName wx_config
|
*/
|
@TableName(value ="wx_config")
|
@Data
|
public class WxConfigEntity implements Serializable {
|
/**
|
*
|
*/
|
@TableId(type = IdType.AUTO)
|
private Long configId;
|
|
/**
|
* appid
|
*/
|
private String appid;
|
|
/**
|
* app端appid
|
*/
|
private String appappid;
|
|
/**
|
*
|
*/
|
private String mchId;
|
|
/**
|
*
|
*/
|
private String privateKey;
|
|
/**
|
* 状态 1启用 / 0未启用
|
*/
|
@JsonIgnore
|
private Integer state;
|
|
/**
|
*
|
*/
|
private Long clientId;
|
|
/**
|
*
|
*/
|
private Long createUserId;
|
|
@TableField(exist = false)
|
private static final long serialVersionUID = 1L;
|
}
|