Files
nuttyreading-java/src/main/java/com/peanut/modules/sys/entity/SysAgreementEntity.java
2023-09-19 18:24:19 +08:00

31 lines
491 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.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;
}