mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-22 12:05:05 +08:00
update 创建运营商同步创建管理员账号
This commit is contained in:
@@ -0,0 +1,69 @@
|
||||
package com.jsowell.pile.dto;
|
||||
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
/**
|
||||
* 创建运营商DTO
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
public class CreateMerchantDTO {
|
||||
private Long id;
|
||||
|
||||
/**
|
||||
* 运营商名称
|
||||
*/
|
||||
private String merchantName;
|
||||
|
||||
/**
|
||||
* 地址
|
||||
*/
|
||||
private String address;
|
||||
|
||||
/**
|
||||
* 状态
|
||||
* 0-失效;1-生效
|
||||
*/
|
||||
private String status;
|
||||
|
||||
/**
|
||||
* 组织机构代码
|
||||
*/
|
||||
private String organizationCode;
|
||||
|
||||
/**
|
||||
* 负责人姓名
|
||||
*/
|
||||
private String managerName;
|
||||
|
||||
/**
|
||||
* 负责人电话号码
|
||||
*/
|
||||
private String managerPhone;
|
||||
|
||||
/**
|
||||
* 客服电话号码
|
||||
*/
|
||||
private String servicePhone;
|
||||
|
||||
/**
|
||||
* logo
|
||||
*/
|
||||
private String logoUrl;
|
||||
|
||||
/**
|
||||
* 运营商的小程序appId
|
||||
*/
|
||||
private String appId;
|
||||
|
||||
/**
|
||||
* 部门id
|
||||
*/
|
||||
private String deptId;
|
||||
|
||||
private String userName;
|
||||
|
||||
private String password;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user