2022-05-18 09:19:50 +08:00
|
|
|
package com.engine.salary.entity.taxagent.po;
|
|
|
|
|
|
2024-08-09 09:22:27 +08:00
|
|
|
import com.thoughtworks.xstream.annotations.XStreamAlias;
|
|
|
|
|
import com.thoughtworks.xstream.annotations.XStreamAsAttribute;
|
2022-05-18 09:19:50 +08:00
|
|
|
import lombok.AllArgsConstructor;
|
|
|
|
|
import lombok.Builder;
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
import lombok.NoArgsConstructor;
|
|
|
|
|
|
2022-05-24 09:14:26 +08:00
|
|
|
import java.util.Collection;
|
2022-05-18 09:19:50 +08:00
|
|
|
import java.util.Date;
|
|
|
|
|
|
|
|
|
|
/**
|
2022-05-19 14:50:01 +08:00
|
|
|
* 个税扣缴义务人基础信息
|
|
|
|
|
* <p>Copyright: Copyright (c) 2022</p>
|
|
|
|
|
* <p>Company: 泛微软件</p>
|
|
|
|
|
*
|
|
|
|
|
* @author qiantao
|
|
|
|
|
* @version 1.0
|
|
|
|
|
**/
|
2022-05-18 09:19:50 +08:00
|
|
|
@Data
|
|
|
|
|
@Builder
|
|
|
|
|
@NoArgsConstructor
|
|
|
|
|
@AllArgsConstructor
|
|
|
|
|
//hrsa_tax_agent_base")
|
2024-08-09 09:22:27 +08:00
|
|
|
@XStreamAlias("TaxAgentBase")
|
2022-05-18 09:19:50 +08:00
|
|
|
public class TaxAgentBasePO {
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 主键id
|
|
|
|
|
*/
|
2024-08-09 09:22:27 +08:00
|
|
|
@XStreamAlias("id")
|
|
|
|
|
@XStreamAsAttribute
|
2022-05-18 09:19:50 +08:00
|
|
|
private Long id;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 分权开关
|
|
|
|
|
*/
|
2024-08-09 09:22:27 +08:00
|
|
|
@XStreamAlias("devolutionStatus")
|
|
|
|
|
@XStreamAsAttribute
|
2022-05-18 09:19:50 +08:00
|
|
|
private Integer devolutionStatus;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 租户key
|
|
|
|
|
*/
|
2024-08-09 09:22:27 +08:00
|
|
|
@XStreamAlias("tenantKey")
|
|
|
|
|
@XStreamAsAttribute
|
2022-05-18 09:19:50 +08:00
|
|
|
private String tenantKey;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 创建人id
|
|
|
|
|
*/
|
2024-08-09 09:22:27 +08:00
|
|
|
@XStreamAlias("creator")
|
|
|
|
|
@XStreamAsAttribute
|
2022-05-18 09:19:50 +08:00
|
|
|
private Long creator;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 是否删除
|
|
|
|
|
*/
|
2024-08-09 09:22:27 +08:00
|
|
|
@XStreamAlias("deleteType")
|
|
|
|
|
@XStreamAsAttribute
|
2022-05-18 09:19:50 +08:00
|
|
|
private Integer deleteType;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 创建时间
|
|
|
|
|
*/
|
2024-08-09 09:22:27 +08:00
|
|
|
@XStreamAlias("createTime")
|
|
|
|
|
@XStreamAsAttribute
|
2022-05-18 09:19:50 +08:00
|
|
|
private Date createTime;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 更新时间
|
|
|
|
|
*/
|
2024-08-09 09:22:27 +08:00
|
|
|
@XStreamAlias("updateTime")
|
|
|
|
|
@XStreamAsAttribute
|
2022-05-18 09:19:50 +08:00
|
|
|
private Date updateTime;
|
2024-08-09 09:22:27 +08:00
|
|
|
|
2022-05-24 09:14:26 +08:00
|
|
|
private Collection<Long> ids;
|
2022-05-18 09:19:50 +08:00
|
|
|
}
|