You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
package com.glxp.api.entity.auth ;
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 lombok.Data ;
@Data
@TableName ( value = "auth_company" )
public class AuthCompany {
@TableField ( value = "`name`" )
private String name ;
@TableField ( value = "category" )
private Integer category ;
@TableField ( value = "creditCode" )
private String creditCode ;
@TableField ( value = "addr" )
private String addr ;
@TableField ( value = "productAddr" )
private String productAddr ;
/**
* 企业类别: 1.生产企业, 2.流通企业, 3。医疗机构
*/
@TableField ( value = "classes" )
private Integer classes ;
@TableField ( value = "appId" )
private String appId ;
@TableField ( value = "appSecret" )
private String appSecret ;
}