package com.bcxin.ars.dto.sys;

import com.bcxin.ars.dto.SearchDto;
import com.bcxin.ars.model.sys.Sysarea;
import lombok.Data;

/**
 * 区域搜索DTO
 */
@Data
public class SysareaSearchDTO extends SearchDto<Sysarea> {

    /**
     * 名称
     */
    private String name;

    /**
     * 编码
     */
    private String code;

    /**
     * 省编码
     */
    private String provinceCode;

    /**
     * 市编码
     */
    private String cityCode;

    /**
     * 区编码
     */
    private String districtCode;


    /**
     * 显示全国区域
     */
    private String showAll;
    /**
     * 上级ID
     */
    private String parentid;

    /**
     * 机构id
     * @return
     */
    private Long orgid;

    /**
     * 机构类型
     * @return
     */
    private String orgtype;

}
