package org.springblade.modules.business.vo;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import lombok.Data;
|
import org.springblade.modules.business.entity.Business;
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* 工商信息vo
|
* @author zhongrj
|
* @since 2021-12-25
|
*/
|
@Data
|
public class BusinessVo extends Business implements Serializable {
|
|
/**
|
* 分公司统一社会信用代码
|
*/
|
private String creditcode;
|
|
/**
|
* 分公司成立日期
|
*/
|
@JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8")
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
private Date establishtime;
|
|
|
/**
|
* 分公司注册资本
|
*/
|
private String registeredcapital;
|
|
/**
|
* 分公司经营范围
|
*/
|
private String business;
|
|
/**
|
* 分公司营业执照 url
|
*/
|
private String businessLicense;
|
|
}
|