增加字段

This commit is contained in:
zhengqiaowen 2022-10-13 16:58:27 +08:00
parent b3ede7b516
commit c230f3cc2f
3 changed files with 14 additions and 0 deletions

View File

@ -2,6 +2,7 @@ package com.rzyc.mapper.ent;
import com.rzyc.model.ent.InListItem; import com.rzyc.model.ent.InListItem;
import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.springframework.stereotype.Repository;
import java.util.List; import java.util.List;
@ -13,6 +14,7 @@ import java.util.List;
* @author * @author
* @since 2022-09-20 * @since 2022-09-20
*/ */
@Repository
public interface InListItemMapper extends BaseMapper<InListItem> { public interface InListItemMapper extends BaseMapper<InListItem> {
List<String> SelectContents(); List<String> SelectContents();

View File

@ -3,6 +3,7 @@ package com.rzyc.mapper.ent;
import com.rzyc.model.ent.BaseInClass; import com.rzyc.model.ent.BaseInClass;
import com.rzyc.model.ent.InList; import com.rzyc.model.ent.InList;
import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.springframework.stereotype.Repository;
import java.util.List; import java.util.List;
@ -14,6 +15,7 @@ import java.util.List;
* @author * @author
* @since 2022-09-20 * @since 2022-09-20
*/ */
@Repository
public interface InListMapper extends BaseMapper<InList> { public interface InListMapper extends BaseMapper<InList> {
/*查询所有*/ /*查询所有*/
List<InList> findAll(); List<InList> findAll();

View File

@ -27,6 +27,8 @@ public class SysOrg implements Serializable {
private Integer orglevel; private Integer orglevel;
private String orgType;
private String superiororgcode; private String superiororgcode;
private String createdby; private String createdby;
@ -50,6 +52,14 @@ public class SysOrg implements Serializable {
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
public String getOrgType() {
return orgType;
}
public void setOrgType(String orgType) {
this.orgType = orgType;
}
public String getSuperName() { public String getSuperName() {
return superName; return superName;
} }