mirror of https://gitee.com/stylefeng/roses
commit
d9f5b3a51a
|
@ -79,6 +79,11 @@ public class HrOrganizationDTO {
|
|||
*/
|
||||
private Integer orgType;
|
||||
|
||||
/**
|
||||
* 税号
|
||||
*/
|
||||
private String taxNo;
|
||||
|
||||
/**
|
||||
* 组织机构描述
|
||||
*/
|
||||
|
|
|
@ -29,6 +29,7 @@ import cn.stylefeng.roses.kernel.rule.annotation.ChineseDescription;
|
|||
import cn.stylefeng.roses.kernel.rule.pojo.request.BaseRequest;
|
||||
import cn.stylefeng.roses.kernel.validator.api.validators.status.StatusValue;
|
||||
import cn.stylefeng.roses.kernel.validator.api.validators.unique.TableUniqueValue;
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
|
||||
|
@ -109,6 +110,12 @@ public class HrOrganizationRequest extends BaseRequest {
|
|||
@ChineseDescription("组织机构类型:1-公司,2-部门")
|
||||
private Integer orgType;
|
||||
|
||||
/**
|
||||
* 税号
|
||||
*/
|
||||
@ChineseDescription("税号")
|
||||
private String taxNo;
|
||||
|
||||
/**
|
||||
* 描述
|
||||
*/
|
||||
|
|
|
@ -101,6 +101,12 @@ public class OrganizationTreeNode implements AbstractTreeNode<OrganizationTreeNo
|
|||
@ChineseDescription("组织机构类型:1-公司,2-部门")
|
||||
private Integer orgType;
|
||||
|
||||
/**
|
||||
* 税号
|
||||
*/
|
||||
@ChineseDescription("税号")
|
||||
private String taxNo;
|
||||
|
||||
/**
|
||||
* 组织机构描述
|
||||
*/
|
||||
|
|
|
@ -102,6 +102,13 @@ public class HrOrganization extends BaseEntity {
|
|||
@ChineseDescription("组织机构类型:1-公司,2-部门")
|
||||
private Integer orgType;
|
||||
|
||||
/**
|
||||
* 税号
|
||||
*/
|
||||
@TableField(value = "tax_no")
|
||||
@ChineseDescription("税号")
|
||||
private String taxNo;
|
||||
|
||||
/**
|
||||
* 组织机构描述
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue