Files
jsowell-charger-web/jsowell-pile/src/main/java/com/jsowell/pile/dto/CreateMerchantDTO.java

70 lines
957 B
Java
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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;
}