Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
T
topsun-bpm
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
鲁鑫
topsun-bpm
Commits
9464f88d
Commit
9464f88d
authored
Dec 15, 2023
by
wanghang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
展示与修改页
parent
4f19b3fe
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
132 additions
and
4 deletions
+132
-4
WorkInstructionApplyApplication.java
...proofing/application/WorkInstructionApplyApplication.java
+1
-0
WorkInstructionController.java
...topsun/proofing/controller/WorkInstructionController.java
+0
-3
WorkInstructionApply.java
...main/workInstructionApply/model/WorkInstructionApply.java
+131
-0
WorkInstructionApplyRepository.java
...n/proofing/repository/WorkInstructionApplyRepository.java
+0
-1
No files found.
topsun/src/main/java/com/huigou/topsun/proofing/application/WorkInstructionApplyApplication.java
View file @
9464f88d
package
com
.
huigou
.
topsun
.
proofing
.
application
;
package
com
.
huigou
.
topsun
.
proofing
.
application
;
import
com.huigou.topsun.proofing.domain.workInstructionApply.model.WorkInstructionApply
;
import
com.huigou.topsun.proofing.domain.workInstructionApply.model.WorkInstructionApply
;
import
com.huigou.topsun.proofing.domain.workInstructionApply.query.WorkInstructionApplyQueryRequest
;
import
com.huigou.topsun.proofing.domain.workInstructionApply.query.WorkInstructionApplyQueryRequest
;
...
...
topsun/src/main/java/com/huigou/topsun/proofing/controller/WorkInstructionController.java
View file @
9464f88d
...
@@ -2,10 +2,7 @@ package com.huigou.topsun.proofing.controller;
...
@@ -2,10 +2,7 @@ package com.huigou.topsun.proofing.controller;
import
com.huigou.topsun.proofing.application.WorkInstructionApplication
;
import
com.huigou.topsun.proofing.application.WorkInstructionApplication
;
import
com.huigou.topsun.proofing.domain.vo.WorkInstructionVo
;
import
com.huigou.topsun.proofing.domain.vo.WorkInstructionVo
;
import
com.huigou.topsun.proofing.domain.workInstruction.model.WorkInstructionBaseInfo
;
import
com.huigou.topsun.proofing.domain.workInstruction.query.WorkInstructionBaseInfoQueryRequest
;
import
com.huigou.topsun.proofing.domain.workInstruction.query.WorkInstructionBaseInfoQueryRequest
;
import
com.huigou.topsun.proofing.domain.workInstructionApply.model.WorkInstructionApply
;
import
com.huigou.topsun.proofing.domain.workInstructionApply.query.WorkInstructionApplyQueryRequest
;
import
com.huigou.uasp.annotation.ControllerMapping
;
import
com.huigou.uasp.annotation.ControllerMapping
;
import
com.huigou.uasp.client.CommonController
;
import
com.huigou.uasp.client.CommonController
;
import
com.huigou.util.SDO
;
import
com.huigou.util.SDO
;
...
...
topsun/src/main/java/com/huigou/topsun/proofing/domain/workInstructionApply/model/WorkInstructionApply.java
0 → 100644
View file @
9464f88d
package
com
.
huigou
.
topsun
.
proofing
.
domain
.
workInstructionApply
.
model
;
import
java.io.Serializable
;
import
javax.persistence.Column
;
import
javax.persistence.Id
;
import
javax.persistence.Table
;
import
lombok.Data
;
/**
* 作业指导申请书
* @TableName work_instruction_apply
*/
@Table
(
name
=
"work_instruction_apply"
)
@Data
public
class
WorkInstructionApply
implements
Serializable
{
/**
* 作业指导申请书id
*/
@Id
@Column
(
name
=
"work_instruction_apply_id"
)
private
String
workInstructionApplyId
;
/**
* 打样制作单id
*/
@Column
(
name
=
"proofing_make_id"
)
private
String
proofingMakeId
;
/**
* 产品id
*/
@Column
(
name
=
"product_id"
)
private
String
productId
;
/**
* 产品编码
*/
@Column
(
name
=
"product_code"
)
private
String
productCode
;
/**
* 规格书编号
*/
@Column
(
name
=
"specification_no"
)
private
String
specificationNo
;
/**
* 产品类型
*/
@Column
(
name
=
"product_type"
)
private
String
productType
;
/**
* 品牌
*/
private
String
brand
;
/**
* 采购单位
*/
@Column
(
name
=
"product_unit"
)
private
String
productUnit
;
/**
* 换算值
*/
@Column
(
name
=
"matrixing_value"
)
private
Integer
matrixingValue
;
/**
* 产品名称
*/
@Column
(
name
=
"product_name"
)
private
String
productName
;
/**
* 产品英文名称
*/
@Column
(
name
=
"product_en_name"
)
private
String
productEnName
;
/**
* 仓库
*/
@Column
(
name
=
"store_house"
)
private
String
storeHouse
;
/**
* 尺码组
*/
@Column
(
name
=
"size_group"
)
private
String
sizeGroup
;
/**
* 是否禁用
*/
@Column
(
name
=
"is_disable"
)
private
String
isDisable
;
/**
* 是否创建新规格书
*/
@Column
(
name
=
"is_new_specification"
)
private
String
isNewSpecification
;
/**
* 是否要鞋图
*/
@Column
(
name
=
"is_shoe_pattern"
)
private
String
isShoePattern
;
/**
* 是否附样品
*/
@Column
(
name
=
"is_attached_sample"
)
private
String
isAttachedSample
;
/**
* 是否为唯一码产品
*/
@Column
(
name
=
"is_only_code"
)
private
String
isOnlyCode
;
/**
* 是否不考虑形体配色
*/
@Column
(
name
=
"is_body_color"
)
private
String
isBodyColor
;
private
static
final
long
serialVersionUID
=
1L
;
}
\ No newline at end of file
topsun/src/main/java/com/huigou/topsun/proofing/repository/WorkInstructionApplyRepository.java
View file @
9464f88d
...
@@ -4,7 +4,6 @@ package com.huigou.topsun.proofing.repository;
...
@@ -4,7 +4,6 @@ package com.huigou.topsun.proofing.repository;
import
com.huigou.topsun.proofing.domain.workInstructionApply.model.WorkInstructionApply
;
import
com.huigou.topsun.proofing.domain.workInstructionApply.model.WorkInstructionApply
;
import
org.springframework.data.jpa.repository.JpaRepository
;
import
org.springframework.data.jpa.repository.JpaRepository
;
public
interface
WorkInstructionApplyRepository
extends
JpaRepository
<
WorkInstructionApply
,
String
>
{
public
interface
WorkInstructionApplyRepository
extends
JpaRepository
<
WorkInstructionApply
,
String
>
{
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment