gongzuming
2024-09-14 83ad32e1e131711c5de03d7bc5eb325f66fd5097
1
2
3
4
5
6
7
8
9
10
11
package com.mzl.flower.dto.request.customer;
 
import lombok.Data;
 
@Data
public class ChangePartnerDTO {
 
    private Long id;
 
    private Long partnerId; //为空表示解绑,不为空表示变更
}