xin
2025-07-14 d2985d31ba7b387749b2350882172f675b923347
oying-system/src/main/java/com/oying/modules/sh/domain/OrderAddressSnapshot.java
@@ -3,6 +3,7 @@
import cn.hutool.core.bean.BeanUtil;
import io.swagger.annotations.ApiModelProperty;
import cn.hutool.core.bean.copier.CopyOptions;
import java.math.BigDecimal;
import javax.validation.constraints.NotBlank;
import javax.validation.constraints.NotNull;
@@ -15,10 +16,10 @@
import lombok.Setter;
/**
* @description /
* @author lixin
* @date 2025-06-11
**/
 * @author lixin
 * @description /
 * @date 2025-06-11
 **/
@Getter
@Setter
@TableName("sh_order_address_snapshot")
@@ -71,7 +72,7 @@
    @ApiModelProperty(value = "地址标签(家/公司/学校等)")
    private String tag;
    public void copy(OrderAddressSnapshot source){
        BeanUtil.copyProperties(source,this, CopyOptions.create().setIgnoreNullValue(true));
    public void copy(OrderAddressSnapshot source) {
        BeanUtil.copyProperties(source, this, CopyOptions.create().setIgnoreNullValue(true));
    }
}