添加机构ID字段
This commit is contained in:
parent
b92af8a266
commit
e5c89ab8c0
@ -67,4 +67,7 @@ public class DoctornoticePageReqVO extends PageParam {
|
|||||||
@Schema(description = "用户姓名")
|
@Schema(description = "用户姓名")
|
||||||
private String username;
|
private String username;
|
||||||
|
|
||||||
|
@Schema(description = "机构ID")
|
||||||
|
private Integer orgid;
|
||||||
|
|
||||||
}
|
}
|
||||||
@ -80,4 +80,8 @@ public class DoctornoticeRespVO {
|
|||||||
@ExcelProperty("用户姓名")
|
@ExcelProperty("用户姓名")
|
||||||
private String username;
|
private String username;
|
||||||
|
|
||||||
|
@Schema(description = "机构ID")
|
||||||
|
@ExcelProperty("机构ID")
|
||||||
|
private Integer orgid;
|
||||||
|
|
||||||
}
|
}
|
||||||
@ -71,4 +71,7 @@ public class DoctornoticeSaveReqVO {
|
|||||||
@Schema(description = "用户姓名")
|
@Schema(description = "用户姓名")
|
||||||
private String username;
|
private String username;
|
||||||
|
|
||||||
|
@Schema(description = "机构ID")
|
||||||
|
private Integer orgid;
|
||||||
|
|
||||||
}
|
}
|
||||||
@ -17,13 +17,11 @@ import cn.iocoder.yudao.framework.mybatis.core.dataobject.BaseDO;
|
|||||||
@TableName("tb_doctornotice")
|
@TableName("tb_doctornotice")
|
||||||
@KeySequence("tb_doctornotice_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。
|
@KeySequence("tb_doctornotice_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。
|
||||||
@Data
|
@Data
|
||||||
@EqualsAndHashCode(callSuper = true)
|
|
||||||
@ToString(callSuper = true)
|
@ToString(callSuper = true)
|
||||||
@Builder
|
@Builder
|
||||||
@NoArgsConstructor
|
@NoArgsConstructor
|
||||||
@AllArgsConstructor
|
@AllArgsConstructor
|
||||||
public class DoctornoticeDO extends BaseDO {
|
public class DoctornoticeDO {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 主键ID
|
* 主键ID
|
||||||
*/
|
*/
|
||||||
@ -109,4 +107,10 @@ public class DoctornoticeDO extends BaseDO {
|
|||||||
*/
|
*/
|
||||||
@TableField("username")
|
@TableField("username")
|
||||||
private String username;
|
private String username;
|
||||||
|
/**
|
||||||
|
* 机构ID
|
||||||
|
*/
|
||||||
|
@TableField("orgid")
|
||||||
|
private Integer orgid;
|
||||||
|
|
||||||
}
|
}
|
||||||
Loading…
Reference in New Issue
Block a user