package com.moral.api.pojo.ext.responsibility;
|
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
import lombok.experimental.Accessors;
|
|
/**
|
* @ClassName ResponsibilityUnit
|
* @Description TODO
|
* @Author @cjl
|
* @Date 2024-06-17 15:44
|
* @Version 1.0
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = false)
|
@Accessors(chain = true)
|
public class ResponsibilityUnitExt {
|
|
@ApiModelProperty(value = "区域编码")
|
private String areaCode;
|
|
|
@ApiModelProperty(value = "上级编码")
|
private String parentCode;
|
}
|