package com.ltkj.hosp.domain;
|
|
import com.baomidou.mybatisplus.annotation.FieldStrategy;
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.ltkj.common.annotation.Excel;
|
import com.ltkj.common.core.domain.BaseEntity;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
|
import java.math.BigDecimal;
|
|
/**
|
* 体检单位部门对象 tj_dw_dept
|
*
|
* @author ltkj_赵佳豪&李格
|
* @date 2023-08-07
|
*/
|
@Data
|
@ApiModel(value = "新增单位部门")
|
public class TjDwDept extends BaseEntity {
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 主键
|
*/
|
@TableId(type = IdType.ASSIGN_ID)
|
private String id;
|
|
/**
|
* 单位id
|
*/
|
@Excel(name = "单位id")
|
@ApiModelProperty(value = "单位id")
|
private String dwId;
|
|
/**
|
* 单位名
|
*/
|
@Excel(name = "单位名")
|
@ApiModelProperty(value = "单位名")
|
private String dwName;
|
|
/**
|
* 部门名
|
*/
|
@Excel(name = "部门名")
|
@ApiModelProperty(value = "部门名")
|
private String dwDeptName;
|
|
|
@ApiModelProperty(value = "病种")
|
@TableField(updateStrategy = FieldStrategy.IGNORED)
|
private String bz;
|
|
|
/**
|
* 签约金额
|
*/
|
@Excel(name = "部门名")
|
@ApiModelProperty(value = "签约金额")
|
private BigDecimal signingPrice;
|
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getId() {
|
return id;
|
}
|
|
public void setDwId(String dwId) {
|
this.dwId = dwId;
|
}
|
|
public String getDwId() {
|
return dwId;
|
}
|
|
public void setDwName(String dwName) {
|
this.dwName = dwName;
|
}
|
|
public String getDwName() {
|
return dwName;
|
}
|
|
public void setDwDeptName(String dwDeptName) {
|
this.dwDeptName = dwDeptName;
|
}
|
|
public String getDwDeptName() {
|
return dwDeptName;
|
}
|
|
|
@Override
|
public String toString() {
|
return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
|
.append("id", getId())
|
.append("dwId", getDwId())
|
.append("dwName", getDwName())
|
.append("dwDeptName", getDwDeptName())
|
.append("createTime", getCreateTime())
|
.append("createBy", getCreateBy())
|
.append("updateTime", getUpdateTime())
|
.append("updateBy", getUpdateBy())
|
.append("deleted", getDeleted())
|
.toString();
|
}
|
}
|