| | |
| | | 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") |
| | | @TableName(value ="wx_config") |
| | | @Data |
| | | public class WxConfigEntity implements Serializable { |
| | | /** |
| | | * |
| | | * |
| | | */ |
| | | @TableId(type = IdType.AUTO) |
| | | private Long configId; |
| | |
| | | private String appappid; |
| | | |
| | | /** |
| | | * |
| | | * |
| | | */ |
| | | private String mchId; |
| | | |
| | | /** |
| | | * |
| | | * secret |
| | | */ |
| | | private String appSecret; |
| | | |
| | | /** |
| | | * |
| | | */ |
| | | private String privateKey; |
| | | |
| | | /** |
| | | * |
| | | */ |
| | | private String keyPath; |
| | | |
| | | /** |
| | | * 状态 1启用 / 0未启用 |
| | | */ |
| | | @JsonIgnore |
| | | private Integer state; |
| | | |
| | | /** |
| | | * |
| | | */ |
| | | private Long clientId; |
| | | |
| | | /** |
| | | * |
| | | * |
| | | */ |
| | | private Long createUserId; |
| | | |