|
@@ -6,8 +6,8 @@ import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
import io.swagger.annotations.ApiModel;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
+import lombok.Data;
|
|
|
|
|
|
-import javax.validation.constraints.NotNull;
|
|
|
import java.io.Serializable;
|
|
|
import java.util.Date;
|
|
|
|
|
@@ -17,6 +17,7 @@ import java.util.Date;
|
|
|
* @author hgw
|
|
|
* @since 2022-02-10 13:53:58
|
|
|
*/
|
|
|
+@Data
|
|
|
@ApiModel(value = "tenant_pre_join-机构入驻表(预加入)")
|
|
|
public class TenantPreJoin implements Serializable {
|
|
|
@TableId(value = "id_", type = IdType.AUTO)
|
|
@@ -115,6 +116,10 @@ public class TenantPreJoin implements Serializable {
|
|
|
@ApiModelProperty(value = "是否已创建为机构 0未创建 1已创建")
|
|
|
private Integer state;
|
|
|
|
|
|
+ @TableField("del_flag_")
|
|
|
+ @ApiModelProperty(value = "删除标记")
|
|
|
+ private Boolean delFlag;
|
|
|
+
|
|
|
@TableField("created_time_")
|
|
|
@ApiModelProperty(value = "创建时间")
|
|
|
private Date createdTime;
|
|
@@ -135,239 +140,5 @@ public class TenantPreJoin implements Serializable {
|
|
|
@ApiModelProperty(value = "学员数量")
|
|
|
private Integer studentNum;
|
|
|
|
|
|
- public Integer getCurrentHasSchoolNum() {
|
|
|
- return currentHasSchoolNum;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCurrentHasSchoolNum(Integer currentHasSchoolNum) {
|
|
|
- this.currentHasSchoolNum = currentHasSchoolNum;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getStudentNum() {
|
|
|
- return studentNum;
|
|
|
- }
|
|
|
-
|
|
|
- public void setStudentNum(Integer studentNum) {
|
|
|
- this.studentNum = studentNum;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getRecommender() {
|
|
|
- return recommender;
|
|
|
- }
|
|
|
-
|
|
|
- public void setRecommender(Integer recommender) {
|
|
|
- this.recommender = recommender;
|
|
|
- }
|
|
|
-
|
|
|
- private static final long serialVersionUID = 1L;
|
|
|
-
|
|
|
- public Integer getId() {
|
|
|
- return id;
|
|
|
- }
|
|
|
-
|
|
|
- public void setId(Integer id) {
|
|
|
- this.id = id;
|
|
|
- }
|
|
|
-
|
|
|
- public String getTsignName() {
|
|
|
- return tsignName;
|
|
|
- }
|
|
|
-
|
|
|
- public void setTsignName(String tsignName) {
|
|
|
- this.tsignName = tsignName;
|
|
|
- }
|
|
|
-
|
|
|
- public String getName() {
|
|
|
- return name;
|
|
|
- }
|
|
|
-
|
|
|
- public void setName(String name) {
|
|
|
- this.name = name;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getAreaId() {
|
|
|
- return areaId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setAreaId(Integer areaId) {
|
|
|
- this.areaId = areaId;
|
|
|
- }
|
|
|
-
|
|
|
- public String getAreaName() {
|
|
|
- return areaName;
|
|
|
- }
|
|
|
-
|
|
|
- public void setAreaName(String areaName) {
|
|
|
- this.areaName = areaName;
|
|
|
- }
|
|
|
-
|
|
|
- public String getEmail() {
|
|
|
- return email;
|
|
|
- }
|
|
|
-
|
|
|
- public void setEmail(String email) {
|
|
|
- this.email = email;
|
|
|
- }
|
|
|
-
|
|
|
- public String getCustomerServicePhone() {
|
|
|
- return customerServicePhone;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCustomerServicePhone(String customerServicePhone) {
|
|
|
- this.customerServicePhone = customerServicePhone;
|
|
|
- }
|
|
|
-
|
|
|
- public String getTsignCode() {
|
|
|
- return tsignCode;
|
|
|
- }
|
|
|
-
|
|
|
- public void setTsignCode(String tsignCode) {
|
|
|
- this.tsignCode = tsignCode;
|
|
|
- }
|
|
|
-
|
|
|
- public String getAddress() {
|
|
|
- return address;
|
|
|
- }
|
|
|
-
|
|
|
- public void setAddress(String address) {
|
|
|
- this.address = address;
|
|
|
- }
|
|
|
-
|
|
|
- public String getRemark() {
|
|
|
- return remark;
|
|
|
- }
|
|
|
-
|
|
|
- public void setRemark(String remark) {
|
|
|
- this.remark = remark;
|
|
|
- }
|
|
|
-
|
|
|
- public String getEnterpriseLiableName() {
|
|
|
- return enterpriseLiableName;
|
|
|
- }
|
|
|
-
|
|
|
- public void setEnterpriseLiableName(String enterpriseLiableName) {
|
|
|
- this.enterpriseLiableName = enterpriseLiableName;
|
|
|
- }
|
|
|
-
|
|
|
- public String getEnterpriseLiablePhone() {
|
|
|
- return enterpriseLiablePhone;
|
|
|
- }
|
|
|
-
|
|
|
- public void setEnterpriseLiablePhone(String enterpriseLiablePhone) {
|
|
|
- this.enterpriseLiablePhone = enterpriseLiablePhone;
|
|
|
- }
|
|
|
-
|
|
|
- public String getLegalPersonIdFrontPic() {
|
|
|
- return legalPersonIdFrontPic;
|
|
|
- }
|
|
|
-
|
|
|
- public void setLegalPersonIdFrontPic(String legalPersonIdFrontPic) {
|
|
|
- this.legalPersonIdFrontPic = legalPersonIdFrontPic;
|
|
|
- }
|
|
|
-
|
|
|
- public String getLegalPersonIdReversePic() {
|
|
|
- return legalPersonIdReversePic;
|
|
|
- }
|
|
|
-
|
|
|
- public void setLegalPersonIdReversePic(String legalPersonIdReversePic) {
|
|
|
- this.legalPersonIdReversePic = legalPersonIdReversePic;
|
|
|
- }
|
|
|
-
|
|
|
- public String getContacts() {
|
|
|
- return contacts;
|
|
|
- }
|
|
|
-
|
|
|
- public void setContacts(String contacts) {
|
|
|
- this.contacts = contacts;
|
|
|
- }
|
|
|
-
|
|
|
- public String getPhone() {
|
|
|
- return phone;
|
|
|
- }
|
|
|
-
|
|
|
- public void setPhone(String phone) {
|
|
|
- this.phone = phone;
|
|
|
- }
|
|
|
-
|
|
|
- public String getTsignPic() {
|
|
|
- return tsignPic;
|
|
|
- }
|
|
|
-
|
|
|
- public void setTsignPic(String tsignPic) {
|
|
|
- this.tsignPic = tsignPic;
|
|
|
- }
|
|
|
-
|
|
|
- public String getTaxRegisterPic() {
|
|
|
- return taxRegisterPic;
|
|
|
- }
|
|
|
-
|
|
|
- public void setTaxRegisterPic(String taxRegisterPic) {
|
|
|
- this.taxRegisterPic = taxRegisterPic;
|
|
|
- }
|
|
|
-
|
|
|
- public String getCompanyAccountInfoPic() {
|
|
|
- return companyAccountInfoPic;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCompanyAccountInfoPic(String companyAccountInfoPic) {
|
|
|
- this.companyAccountInfoPic = companyAccountInfoPic;
|
|
|
- }
|
|
|
-
|
|
|
- public String getLogo() {
|
|
|
- return logo;
|
|
|
- }
|
|
|
-
|
|
|
- public void setLogo(String logo) {
|
|
|
- this.logo = logo;
|
|
|
- }
|
|
|
-
|
|
|
- public String getCorporateChops() {
|
|
|
- return corporateChops;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCorporateChops(String corporateChops) {
|
|
|
- this.corporateChops = corporateChops;
|
|
|
- }
|
|
|
-
|
|
|
- public String getCorporateFinanceChops() {
|
|
|
- return corporateFinanceChops;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCorporateFinanceChops(String corporateFinanceChops) {
|
|
|
- this.corporateFinanceChops = corporateFinanceChops;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getState() {
|
|
|
- return state;
|
|
|
- }
|
|
|
-
|
|
|
- public void setState(Integer state) {
|
|
|
- this.state = state;
|
|
|
- }
|
|
|
-
|
|
|
- public Date getCreatedTime() {
|
|
|
- return createdTime;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCreatedTime(Date createdTime) {
|
|
|
- this.createdTime = createdTime;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getProvinceId() {
|
|
|
- return provinceId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setProvinceId(Integer provinceId) {
|
|
|
- this.provinceId = provinceId;
|
|
|
- }
|
|
|
-
|
|
|
- public String getProvinceName() {
|
|
|
- return provinceName;
|
|
|
- }
|
|
|
-
|
|
|
- public void setProvinceName(String provinceName) {
|
|
|
- this.provinceName = provinceName;
|
|
|
- }
|
|
|
-
|
|
|
}
|
|
|
|