You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
527 B
Java
32 lines
527 B
Java
package com.glxp.api.res.inv;
|
|
|
|
import com.glxp.api.entity.inv.InvCountSettingEntity;
|
|
import lombok.Data;
|
|
|
|
/**
|
|
* 盘点设置响应结果
|
|
*/
|
|
@Data
|
|
public class InvCountSettingResponse extends InvCountSettingEntity {
|
|
|
|
/**
|
|
* 入库单据类型名称
|
|
*/
|
|
private String inBusTypeName;
|
|
|
|
/**
|
|
* 出库盘点单据类型名称
|
|
*/
|
|
private String outBusTypeName;
|
|
|
|
|
|
private String inFromCorpName;
|
|
|
|
private String outFromCorpName;
|
|
|
|
private String invName;
|
|
|
|
private String spaceName;
|
|
|
|
}
|