1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| package com.whyc.pojo;
|
| import com.baomidou.mybatisplus.annotation.TableName;
| import io.swagger.annotations.ApiModel;
| import lombok.Data;
|
| @Data
| @TableName(schema = "web_site",value = "tb_license")
| @ApiModel(value="凭证", description="项目允许凭证")
| public class License {
| private Integer id;
| private String serialNumber;
| private String duration;
| private String timeInUse;
| }
|
|