--微信支付
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
package com.peanut.modules.sys.entity;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
@TableName("sys_agreement")
|
||||
public class SysAgreementEntity {
|
||||
|
||||
@TableId
|
||||
private Integer id;
|
||||
|
||||
/**
|
||||
* 标题
|
||||
*/
|
||||
private String title;
|
||||
|
||||
/**
|
||||
* 内容
|
||||
*/
|
||||
private String content;
|
||||
|
||||
/**
|
||||
* 类型
|
||||
* 会员:member
|
||||
* 充值: pay
|
||||
*/
|
||||
private String type;
|
||||
}
|
||||
Reference in New Issue
Block a user