package com.sunda.spmsoversea.dto;

import io.swagger.annotations.ApiModelProperty;
import lombok.Data;

/**
 * @program: spms
 * @description:
 * @author: Wayne Wu
 * @create: 2021-12-17 17:47
 **/
@Data
public class OverseaDnSapDTO {

    @ApiModelProperty(value = "交货单号")
    private String sapDeliveryNote;

    @ApiModelProperty(value = "过账日期/按应收入库凭证——提交应收时才需要输入")
    private String postingDate;

    @ApiModelProperty(value = "SAP过账日期/少收凭证——存在少收提交少收时才需要输入")
    private String underPostingDate;

    @ApiModelProperty(value = "撤销过账日期/按应收入库凭证——撤销应收时才需要输入")
    private String cancelPostingDate;

    @ApiModelProperty(value = "撤销SAP过账日期/少收凭证——撤销少收时才需要输入")
    private String cancelUnderPostingDate;

    @ApiModelProperty(value = "成本中心——存在少收提交少收时需输入")
    private String costCenter;

    @ApiModelProperty(value = "数据版本号")
    private Integer dataVersion;

}
