ShipmentSituation.java
397 Bytes
package com.huaheng.api.tv.domain;
import lombok.Data;
/**
* 出库情况实体类
* @author xcq
*/
@Data
public class ShipmentSituation {
/**
* 任务单号
*/
private String referCode;
/**
* 出库类型
*/
private String shipmentType;
/**
* 月台名称
*/
private String name;
/**
* 时间
*/
private String time;
}