@EqualsAndHashCode(callSuper = true)
@Data
@TableName("la_school_business")
@Schema(description = "商务负责人表")
public class SchoolBusiness extends BaseEntity {private static final long serialVersionUID = -7124481085999629236L;@Schema(description = "商务负责人ID")private Long id;@Schema(description = "总后台用户ID 关联总后台用户表")@JsonSerialize(using = ToStringSerializer.class)private Long userId;@Schema(description = "合作学校ID")@JsonSerialize(using = ToStringSerializer.class)private Long cooperationSchoolId;@Schema(description = "删除标识 0. 合作中 1.已停止")private Integer isCooperation;@Schema(description = "商务手机号")private String telephone;@Schema(description = "商务姓名")private String businessUserName;}