New file |
| | |
| | | package cn.exrick.xboot.your.entity; |
| | | |
| | | import cn.exrick.xboot.core.base.XbootBaseEntity; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import org.hibernate.annotations.DynamicInsert; |
| | | import org.hibernate.annotations.DynamicUpdate; |
| | | |
| | | import javax.persistence.Entity; |
| | | import javax.persistence.Table; |
| | | |
| | | /** |
| | | * @author Exrick |
| | | */ |
| | | @Data |
| | | @Entity |
| | | @DynamicInsert |
| | | @DynamicUpdate |
| | | @Table(name = "t_remote_call") |
| | | @TableName("t_remote_call") |
| | | @ApiModel(value = "远程呼叫记录") |
| | | public class RemoteCall extends XbootBaseEntity { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @ApiModelProperty(value = "商户") |
| | | private String customerId; |
| | | |
| | | @ApiModelProperty(value = "呼叫人") |
| | | private String userId; |
| | | |
| | | @ApiModelProperty(value = "呼叫电话") |
| | | private String phone; |
| | | } |