You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
647 B
41 lines
647 B
2 years ago
|
package com.dxhy.erp.entity;
|
||
|
|
||
|
import lombok.Data;
|
||
|
|
||
|
/**
|
||
|
* @author peipei.li
|
||
|
* @date 2019-04-25 进项税转出确认,条件vo
|
||
|
*/
|
||
|
@Data
|
||
|
public class BaseInvoiceEditVO {
|
||
|
|
||
|
/**
|
||
|
* 主键,多个以英文逗号分隔,结尾不加逗号
|
||
|
*/
|
||
|
private String primaryKey;
|
||
|
/**
|
||
|
* 转出选项,1=全部转出, 2=部分转出
|
||
|
*/
|
||
|
private String outStatus;
|
||
|
|
||
|
/**
|
||
|
* 转出金额
|
||
|
*/
|
||
|
private String outAmount;
|
||
|
|
||
|
/**
|
||
|
* 转出税额
|
||
|
*/
|
||
|
private String outTax;
|
||
|
/**
|
||
|
* 转出原因
|
||
|
*/
|
||
|
private String outReason;
|
||
|
|
||
|
/**
|
||
|
* 备注
|
||
|
*/
|
||
|
private String outRemark;
|
||
|
|
||
|
}
|