package com.stylefeng.guns.modular.system.util.qianyuntong.model;
|
|
import lombok.Data;
|
|
/**
|
* @author zhibing.pu
|
* @Date 2025/6/9 18:13
|
*/
|
@Data
|
public class ModifyEnterpriseInfoRequest {
|
/**
|
* 企业编码
|
*/
|
private String enter_code;
|
/**
|
* 操作人员手机号
|
*/
|
private String operator;
|
/**
|
* 企业名称
|
*/
|
private String enter_name;
|
/**
|
* 企业简称
|
*/
|
private String enter_nickname;
|
/**
|
* 企业地址
|
*/
|
private String enter_address;
|
/**
|
* 企业邮箱
|
*/
|
private String enter_email;
|
/**
|
* 联系人姓名
|
*/
|
private String contact_name;
|
/**
|
* 联系人手机号
|
*/
|
private String contact_mobile;
|
/**
|
* 营业执照扫描件URL
|
*/
|
private String operscanpic;
|
/**
|
* 营业期开始时间
|
*/
|
private String businessTermStartTime;
|
/**
|
* 营业期结束时间
|
*/
|
private String businessTermEndTime;
|
/**
|
* 区域编码
|
*/
|
private String area;
|
/**
|
* 二级域名
|
*/
|
private String second_realms;
|
/**
|
* 企业来源编码
|
*/
|
private String source_code;
|
/**
|
* 店铺所属行业编码
|
*/
|
private String trade_code;
|
/**
|
* 企业分类编码
|
*/
|
private String type_code;
|
}
|