package com.example.domain;
|
|
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 java.io.Serializable;
|
import lombok.Data;
|
|
/**
|
*
|
* @TableName dict_common_his_config
|
*/
|
@TableName(value ="dict_common_his_config")
|
@Data
|
public class DictCommonHisConfig implements Serializable {
|
/**
|
*
|
*/
|
@TableId(type = IdType.AUTO)
|
private Integer id;
|
|
/**
|
*
|
*/
|
private String fullKey;
|
|
/**
|
*
|
*/
|
private String province;
|
|
/**
|
*
|
*/
|
private String region;
|
|
/**
|
*
|
*/
|
private String city;
|
|
/**
|
*
|
*/
|
private String hospital;
|
|
/**
|
*
|
*/
|
private String tjUrl;
|
|
/**
|
*
|
*/
|
private String hisApiUrl;
|
|
/**
|
*
|
*/
|
private Integer hisApiPort;
|
|
/**
|
*
|
*/
|
private String hisApiAppend;
|
|
/**
|
*
|
*/
|
private String czy;
|
|
/**
|
*
|
*/
|
private String czyId;
|
|
/**
|
*
|
*/
|
private String dbIp;
|
|
/**
|
*
|
*/
|
private Integer dbPort;
|
|
/**
|
*
|
*/
|
private String dbName;
|
|
/**
|
*
|
*/
|
private String dbUser;
|
|
/**
|
*
|
*/
|
private String dbPassword;
|
|
@TableField(exist = false)
|
private String hisUrl;
|
}
|