package com.by4cloud.platformx.business.dto;
|
|
import lombok.Data;
|
|
@Data
|
public class ContractQueryDTO {
|
|
private String contractName;
|
|
private String contractNo;
|
|
private String partyA;
|
|
private String billingStatus;
|
|
/**
|
* 1 是 0 否
|
*/
|
private String invoiceType;
|
|
/**
|
* 预收发票标识
|
*/
|
private String advanceType;
|
}
|