
7 changed files with 149 additions and 4 deletions
@ -0,0 +1,76 @@ |
|||
/********************************************************* |
|||
********************************************************* |
|||
******************** ******************* |
|||
************* ************ |
|||
******* _oo0oo_ ******* |
|||
*** o8888888o *** |
|||
* 88" . "88 * |
|||
* (| -_- |) * |
|||
* 0\ = /0 * |
|||
* ___/`---'\___ * |
|||
* .' \\| |// '. *
|
|||
* / \\||| : |||// \ *
|
|||
* / _||||| -:- |||||- \ * |
|||
* | | \\\ - /// | | *
|
|||
* | \_| ''\---/'' |_/ | * |
|||
* \ .-\__ '-' ___/-. / * |
|||
* ___'. .' /--.--\ `. .'___ * |
|||
* ."" '< `.___\_<|>_/___.' >' "". * |
|||
* | | : `- \`.;`\ _ /`;.`/ - ` : | | * |
|||
* \ \ `_. \_ __\ /__ _/ .-` / / * |
|||
* =====`-.____`.___ \_____/___.-`___.-'===== * |
|||
* `=---=' * |
|||
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ * |
|||
*********__佛祖保佑__永无BUG__验收通过__钞票多多__********* |
|||
*********************************************************/ |
|||
package com.yxt.anrui.scm.api.scmvehinventorymonth; |
|||
|
|||
|
|||
import com.fasterxml.jackson.annotation.JsonFormat; |
|||
import com.yxt.common.core.utils.ExportEntityMap; |
|||
import com.yxt.common.core.vo.Vo; |
|||
import io.swagger.annotations.ApiModel; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
|
|||
import java.util.Date; |
|||
|
|||
/** |
|||
* Project: aaa(aaa) <br/> |
|||
* File: ScmVehInventorymonthVo.java <br/> |
|||
* Class: com.yxt.anrui.scm.api.api.scmvehinventorymonth.ScmVehInventorymonthVo <br/> |
|||
* Description: 月度盘库 视图数据对象. <br/> |
|||
* Copyright: Copyright (c) 2011 <br/> |
|||
* Company: https://gitee.com/liuzp315 <br/>
|
|||
* Makedate: 2022-09-16 15:52:05 <br/> |
|||
* |
|||
* @author liupopo |
|||
* @version 1.0 |
|||
* @since 1.0 |
|||
*/ |
|||
@Data |
|||
public class ScmVehInventorymonthVoExcel{ |
|||
|
|||
private String sid; |
|||
@ExportEntityMap(CnName = "序号", EnName = "rankNo") |
|||
private Integer rankNo; |
|||
@ExportEntityMap(CnName = "编号", EnName = "billNo") |
|||
private String billNo; // 编号(yyyyMMdd)
|
|||
@ExportEntityMap(CnName = "生成日期", EnName = "createTime") |
|||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
|||
private Date createTime; //
|
|||
@ExportEntityMap(CnName = "生成人", EnName = "createByName") |
|||
private String createByName; |
|||
@ExportEntityMap(CnName = "应盘(台)", EnName = "rankNo") |
|||
private String totalNumber; |
|||
@ExportEntityMap(CnName = "实盘(台)", EnName = "rankNo") |
|||
private String actualNumber; |
|||
@ExportEntityMap(CnName = "未盘(台)", EnName = "rankNo") |
|||
private String surplusNumber; |
|||
@ExportEntityMap(CnName = "盘盈(台)", EnName = "rankNo") |
|||
private String profitNumber; |
|||
@ExportEntityMap(CnName = "盘亏(台)", EnName = "rankNo") |
|||
private String lossNumber; |
|||
@ExportEntityMap(CnName = "盘损(台)", EnName = "rankNo") |
|||
private String damageNumber; |
|||
} |
Loading…
Reference in new issue