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.
25 lines
456 B
25 lines
456 B
package com.dxhy.erp.model;
|
|
|
|
import com.dxhy.common.vo.UserInfo;
|
|
import lombok.Data;
|
|
|
|
/**
|
|
* @author peipei.li
|
|
* @date 2019-05-15 取消已转出进项税请求req
|
|
*/
|
|
@Data
|
|
public class BaseReceiptOutCancelEditReqVO {
|
|
/**
|
|
* uuid,多个以英文逗号分隔,结尾不加分号
|
|
*/
|
|
private String primaryKey;
|
|
|
|
/**
|
|
* 业务参数
|
|
*/
|
|
private String businessCode;
|
|
/**
|
|
*
|
|
*/
|
|
private UserInfo userInfo;
|
|
}
|
|
|