xuhy
2025-10-15 04316f0c84a0da562f0f526e6e537b372dfd8ad9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.ruoyi.system.dto;
 
import com.ruoyi.system.model.TCrmClinic;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value="TCrmClinicDTO对象", description="crm诊所管理")
public class TCrmClinicDTO extends TCrmClinic {
 
    @ApiModelProperty(value = "密码")
    private String password;
 
}